First of all, your connection string doesn't look legitimate....
VB Code:
Dim strCon As String = "Data Source=IP;" & _ 'You need to put in the actual IP address of the server hosting your database here, e.i "Data Source=192.168.0.230
"Initial Catalog= hidden;" & _ 'Is the actual name of the catolog "hidden" ?
"User ID=hidden;" & _ ' Is the actual User ID is "hidden" ?
"Password=hidden" 'Is the actual password for the above user ID "hidden"?
Secondly, on your select statement, you have
VB Code:
Dim strSQL As String = "SELECT * FROM Server" 'Is there a table named "Server" in your database?
Once you get these thing traighten out, we can go further on any other issues.