I have an MsAccess 2003 application which is a dashboard to launching other MsAccess apps.
I employ the API ShellExecute to launch/open the MsAccess app as below:
lngReturn = ShellExecute(Application.hWndAccessApp, _
"Open", _
AccessMDBName, _
"", _
"C:\", _
SW_SHOWNORMAL)
When this code is deployed to a user's machine which only has MsAccess 2003 runtime installed, an error code =5 is returned when opening an MDB file >10MB I do not get any error for smaller MDB files.
Any idea what could be acting up?