I have installed SQL EXPRESS 2005 on Windows 7x64. I have already added sqlsvr.exe in firewall exception, enabled both Names Pipes and TCP/IP from SQL server Configuration Manager. The SQL server Browser service is also set up to run automatically. I enabled the user sa and changed the to sa using SQL Server management Studio Express.
Every thing worked fine and while tried accessing sql server from local, I am able to connect easily.
But, as I tried to create a DSN in odbc data source administration in windows XP x32bit, I am not able to connect. I tried the following names as server names
servercomputername
servercomputername\sqlexpress
192.168.1.2
192.168.1.2\sqlexpress
but all didn't worked. i.e. it shows sql server does not exists or access denied.
I even tried changing connection string in my VB6.0 source code as
Mydb.Open "Driver={SQL Server};Server=(MYSERVERNAME\SQLEXPRESS);Database=Account;Uid=sa;Pwd=sa;"
but alas, it is not working at all. I have googled and read more than 20 different posts, but no solution at all. I am expecting to find my error or my missing point in the configuration process.