P
Parker
I open a database from within access using this code:
Dim RetVal
RetVal = Shell("msaccess.exe C:\foldername\otherdatabase.mdb",
vbMaximizedFocus)
I need to use this code:
Dim RetVal
RetVal = Shell("msaccess.exe C:\folder name\otherdatabase.mdb",
vbMaximizedFocus)
The space in 'folder name' is causing problems. I've used the underscore key
and single quotes with no effect. What is the correct syntax.
Thanks
Dim RetVal
RetVal = Shell("msaccess.exe C:\foldername\otherdatabase.mdb",
vbMaximizedFocus)
I need to use this code:
Dim RetVal
RetVal = Shell("msaccess.exe C:\folder name\otherdatabase.mdb",
vbMaximizedFocus)
The space in 'folder name' is causing problems. I've used the underscore key
and single quotes with no effect. What is the correct syntax.
Thanks