Software Development Network Logo
  • Visual Basic
  • .NET Development
  • Microsoft ISV
  • Smart Device
  • Game Technologies
  • VS Team System
  • VS Express Editions
  • Visual C++
  • Windows Live
  • Visual J#
  • Visual FoxPro
  • SQL Server
  • Windows Vista
  • Visual C#
  • Visual Studio

Software Development Network >> zinggm's Q&A profile

zinggm

Member List

Andrej Tozon
Patrick MCCormick
cmckeegan
Toop
Larry Sackett
The_guy_who_whooped_CHUCK
finny525
Commali
Jacob_I
Sachin Phadke
boms
torrecam
Maparisi
Rich Wilson
Andy Eastwell
Otter Sr
IrishAnto
Prism
Rhialto
FL_David
Only Title

zinggm's Q&A profile

  • Windows Forms Is WebBrowserShortcutsEnabled = false supposed to disable menu access?

    Try creating a simple form with a MenuStrip, and add a menuitem (for example "Hello") with a shortcut on it (for example "Ctrl+H"). Write some code for the menuitem, for example "MessageBox.Show("Hello World!");". Next, add a webbrowser to the form, and set its WebBrowserShortcutsEnabled propterty to false. Next, in the form's load event write something like the following: webBrowser1.Navigate( "about:blank" ); webBrowser1.Docum ...Show All

  • SQL Server Connecting to hosted / remote database

    Hello, I would like to know whether is it possible to administer a database on a hosted site - i.e inserting some lines, executing a query. I normally access the files via ftp connection. And so far the only way I figured I can mess around with the database is to download it and change it on my desktop PC. Thank You. Toma Pajonk they would need to open a port (which is not advisable) port 1433 by default. the best solution i ...Show All

  • Windows Forms TreeNode custom editor

    I want some of the nodes in the TreeView to be edited with calendar control. Is it possible in .NET to do it Thanx. I was able to solve this. Just in case anyone else will need it I post a code example. using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace WindowsApplication1 { /// <summary> /// Summary descri ...Show All

  • SQL Server SERVER 2003 Standard x64 will not run ASP connecting to SQL

    I have a asp page running set dbConn = server.createobject("adodb.connection") dbConn.open "Provider=SQLOLEDB.1;Password=cyclone;Persist Security Info=True;User ID=sa;Initial Catalog=DataWarehouse;Data Source=TVI_XXX" And testing DSN file............with ODBC myConnFile = Server.mapPath("/") & "/" & "TESTFILE.dsn" connectstr = "Provider=SQLOLEDB.1;Password=c ...Show All

  • Visual Studio Express Editions having problem with VC++ express edition and SDK

    Since I had my VC++ I only been doing C++ console application. now I am doing win 32 API but the program is not compiling .( windows.h ) not such directory. can any one tell me how to install SDK. already install but I need to fallow some direction don' tknow Take a look at the first video at http://msdn.microsoft.com/visualc/learning/vcexpvids/default.aspx Hope this helps! Thanks, Ayman Shoukry VC++ Team ...Show All

  • Visual Basic Do I need a File Hook for this?

    How do I find out wich IUSR_ has acessed a system file For instance, how can I build a log file of IUSR_ that have sucessfully used createobject() to the cdonts.dll in my system32 directory I tried the Server’s Object Auditing Policies, and it does seem to do this... but not quite as I need it to be done. I can’t edit the auditing settings every time a new user is added or removed, nor add a group and expect the event log to tell me ...Show All

  • SQL Server How to use SSMSE to connect to instance service directly (without going through Browser service)?

    I have configured an instance to use static port, say 1435, and I turned off the Browser service. I would like to know if I can use SSMSE to connect to the instance database directly. The instance is listening at port 1435 and accepting connection requests from other methods. What I need to put into the "Server name: " field Normally, it would be like: <serverIP>\<InstanceID> with Browser turned on. Now how do I ...Show All

  • Smart Device Development background services

    http://www.pocketpcdn.com/articles/services.html is this still up to date somebody who has experiences withit Even better, does somebody understand it :) and knows how to use it. The sample files can you find below. I want an alltime backgroundservice that for example always on 3 o' clock do function. ...Show All

  • Windows Forms ASP.Net 2.0 Membership API in Windows Forms Smart Client App???

    Can the ASP.Net 2.0 Membership API somehow be leveraged in a Windows Forms Smart Client App Definitely - I've used my own provider pattern for membership in both types of apps (aspnet and winforms) but haven't used the aspnet 2.0  ...Show All

  • Windows Forms Bug? Bound listboxes with dataviews - Problems with SelectedIndex and view

    Hello, Perhaps I've just been staring at this code for too long this morning, but I'm running into what I believe to be two distinct problems with two listboxes and how the SelectedIndex property interacts with the items in my list. In addition,&nbs ...Show All

  • Windows Forms ClickOnce: Licensing & Control no of installations

    Hi, We are trying to architect a Occassionally connected smart client solution for following business scenario: 1. The product would be sold to medium sized companies, which have there own network. 2. The product would published/installed to the server. 3. The end users should always get the latest updates of the software. 4. There should be control on the number of the clients/end users the product can be installed to. Can ...Show All

  • Visual C++ error with afxwin1.inl

    Using VS 2005 Express, I am trying to compile some sample apps I found on codeguru, but I keep runningn into these two errors when compiling as release: [code]C:\Program Files\Microsoft Platform SDK\Include\mfc\afxwin1.inl(1034) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int C:\Program Files\Microsoft Platform SDK\Include\mfc\afxwin1.inl(1036) : error C4430: missing type specifier - int assumed. Note ...Show All

  • Windows Forms ClickOnce Deployment Questions

    Hi, I have a couple of problems relating to clickonce deployment that I was hoping someone could spread some light on. Problem 1: I upload version 1.0.0.1 to my server and user A downloads via clickonce link, this version includes the DB (MS Access) in the data directory. I then discover a bug (not likely I know :-)) and fix this in version 1.0.0.1. I publish this new version but this time have to exclude the DB as I do not want to over ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Maximum primitivecount

    Hi all, I’m moving over to DirectX from OpenGL for my CAD program. Just found that there is a maximum primitivecount limit, I can easily have 1,000,000 plus verities (Circles and Arcs use a lot!). I’m using One big Vertex buffer, for every thing, before I start splitting things up I just want to make sure that I have not missed anything obvious and that I have no alternative. I very new to DirectX you see! Cheers Julian ...Show All

  • Windows Forms How to deploy WSE 2.0 Service Pack 3 enabled application without separate install of WSE?

    I am working on a WSE 2.0 Service Pack 3 enabled application. I would like to use Setup Project to install the WSE 2.0 runtime as well as my application code. Is there anyway to accomplish that Could you give me specific instruction to do that if there is a way Thanks. Rosemary you can use the setup bootstrapper, as described here: http://msdn.microsoft.com/msdnmag/issues/04/10/Bootstrapper/ you need ...Show All

©2008 Software Development Network

powered by phorum