hi everybody,
my connection code is like this:
Set conn = New ADODB.Connection
With conn
.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0; data source = C:\Documents and Settings\kullaniciadi\Desktop\reservation97.mdb; persist security info = false"
.Open
End With
This database (reservation97.mdb) is going to be moved to a server.. How is going to be the path string then? (e.i. \\server\foldername...) ??
And to change the path by an admin when program starts, what should I add to source code? thanx...