How can i change a a single user progrm to be used on the
network?
it uses an Access database and works fine on a single computer the data connection is as follows
Set myConnection = New ADODB.Connection
Set myRecordset = New ADODB.Recordset
'open the connection
myConnection.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & App.Path & "\myDatabase.mdb;" & _
"User Id=admin;" & _
"Password="
Thanks in advance.