This line of code has been working to my SQL 2000 instance on my laptop for months.
Now I'm trying to connect to a network server - and it's failing. That server is running SQL 2005.
Do I have to install something on the network server to get this to work for me??
Code:Imports System.Data.SqlClient . . . Dim LDcn As New SqlConnection Dim booGoodLoad As Boolean = False LDcn.ConnectionString = "Data Source=" & APCSettings.sServer _ & "; Initial Catalog=" & APCSettings.sDatabase _ & "; Integrated Security=SSPI; User Id=" _ & APCSettings.sUserId & "; Password=" & strPassword




Reply With Quote