I am trying to create an Access application that opens multiple Access applications.
I can get it to work on my home machine with:
Private Sub Command2_Click()
Dim stAppName As String
stAppName = "MSACCESS.EXE C:\2003\database4.mdb"
Call Shell(stAppName, 1)
End Sub
I can not get this code to work over my network @work.
I have tried:
stAppName = "MSACCESS.EXE \\company\companyfiles\2003\database4.mdb"
&
stAppName = "MSACCESS.EXE S:company\companyfiles\2003\database4.mdb"
The drive is mapped as "S"
this is a windows NT network.
Seems like it would be simple.
I keep getting a bunch of errors for invalid path.
Any ideas???
I can get it to work on my home machine with:
Private Sub Command2_Click()
Dim stAppName As String
stAppName = "MSACCESS.EXE C:\2003\database4.mdb"
Call Shell(stAppName, 1)
End Sub
I can not get this code to work over my network @work.
I have tried:
stAppName = "MSACCESS.EXE \\company\companyfiles\2003\database4.mdb"
&
stAppName = "MSACCESS.EXE S:company\companyfiles\2003\database4.mdb"
The drive is mapped as "S"
this is a windows NT network.
Seems like it would be simple.
I keep getting a bunch of errors for invalid path.
Any ideas???