SQL Server works. VB itself can see the DB and look at data. The app can't. I am using this connect string
Dim objConn As New SqlConnection("User ID=myacct\myname;Password=mypass;data source=myacct\mydb;initial catalog=myacct\mydb;")
Up top I have:
Imports System
Imports System.Data
Imports System.Data.SqlClient
Imports System.Data.OleDb
Imports System.Math
And I get: Login failed for user 'myacct\myname'. The name, account and password are right. I'm not
So, what am I doing wrong and what should I be doing instead?