I had a code block in an Access module that was working.
The sys admins upgraded the software and now it is not a local install, but a network install.
If I open the application manually, then the code is able to "Get" the running instance and works fine.
How can I tell the application to search a specific network folder for the application that it needs to "Create"?
Thanks much,
Lodlaiden
A lack of experience doesn't prevent you from doing a good job.
The sys admins upgraded the software and now it is not a local install, but a network install.
If I open the application manually, then the code is able to "Get" the running instance and works fine.
How can I tell the application to search a specific network folder for the application that it needs to "Create"?
Code:
...
If str_filename <> "" Then
Set obj = GetObject("", "myApp")
If obj Is Nothing Then
Set obj = CreateObject("myApp")
End If
...
Thanks much,
Lodlaiden
A lack of experience doesn't prevent you from doing a good job.