Last week, i finally had my SQL server running, and i could connect to it, retrieve records, etc.
But 2 days later my whole system crashed, i lost all my partitions :/
So i reinstalled Win2K server + MSSQL 2000 server (same passes)

But now i cant connect to it anymore, i still use the same connection code as before:

VB Code:
  1. Dim CN As New ADODB.Connection
  2. CN.ConnectionString = "Driver=SQL SERVER;server=217.121.161.0\CC200392-B,1433;" & _
  3. "Database=MB;User ID=testuser;Password=test"
  4. CN.Open
This code works when i run it on the pc SQL is installed on, but why aint it work on an remote anymore?