Mirage Source
[ms 3.07] Acouple of questions Error/Connect questions - Printable Version

+- Mirage Source (https://mirage-engine.uk/forums)
+-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61)
+--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18)
+---- Forum: Source Code Development (https://mirage-engine.uk/forums/forumdisplay.php?fid=51)
+----- Forum: Mirage Source 4 (Visual Basic 6) (https://mirage-engine.uk/forums/forumdisplay.php?fid=44)
+------ Forum: Bugs Reports (https://mirage-engine.uk/forums/forumdisplay.php?fid=9)
+------ Thread: [ms 3.07] Acouple of questions Error/Connect questions (/showthread.php?tid=3101)



[ms 3.07] Acouple of questions Error/Connect questions - bluedude13 - 02-09-2009

[Image: 0cc3986d43b89d956665d43624ebbde7.jpg]

Thats what i get when i first run the server it says something with this...

Code:
Public Sub InitDB()
'Setup Connections
Set Conn_Client = New ADODB.Connection
Conn_Client.CursorLocation = adUseClient
Conn_Client.ConnectionString = strCONN
Conn_Client.Open

Set Conn_Server = New ADODB.Connection
Conn_Server.CursorLocation = adUseServer
Conn_Server.ConnectionString = strCONN
Conn_Server.Open

And also how would i get players to connect to my server over a ip


Can some one please point me in the right directions Thanks Smile


Re: [ms 3.07] Acouple of questions Error/Connect questions - Kevin49 - 03-09-2009

I suggest you go see these topics, I haven't read them but they have the same problem as yours and solutions are involved!

viewtopic.php?f=57&t=4718&p=56432&hilit=2147467259#p56432

viewtopic.php?f=84&t=3710&p=42890&hilit=2147467259#p42890


Re: [ms 3.07] Acouple of questions Error/Connect questions - bluedude13 - 03-09-2009

Thanks!