Here is the link: http://asp.dotnetheaven.com/howto/doc/adoplus/DatabaseTrans.aspx. It has examples in C#, VB, and C++.
Changing the startup Windows form (Visual Studio .Net)
March 1, 2007
Connection String for SQLExpress
February 15, 2007
Suppose that your computer name is TAG302757 and you create a database TESTDB in your local SQLExpress server. Then the connection string of the database is:
“Data Source=TAG302757\SQLEXPRESS;Initial Catalog=TESTDB;Integrated Security=True”
Note that there is a space between the words Initial and Catalog; and the the connection string must be in the same line of your VB program.
Missing the Data Sources window (Visual Studio .Net)
February 10, 2007
If you cannot see the Data Sources window, select the menu Data>>Show Data Sources. If you cannot see the Add New Data Sources icon, right-click the Data Sources window to use the popup menu.
An error occurred while establishing a connection to SQLEXPRESS in Visual Studio 2005
February 9, 2007
Miscosoft Visual Studio 2005 comes with a personal SQL Server (or SQLEXPRESS). You may get an error message when trying to add a connection to the SQLEXPRESS server for your project. The ”Add Connection” dialog usually shows your computer name in the “server name” field. You have to add a back slash and the “SQLEXPRESS” string for a sucessful connection (See the figure below).
