In VB6, if I wanted (for some reason or another)to open a MS Access Database file within Access (funnily enough) how would I go about doing this??????
Printable View
In VB6, if I wanted (for some reason or another)to open a MS Access Database file within Access (funnily enough) how would I go about doing this??????
One Way:
Code:Dim RetVal
RetVal = Shell("C:\Program Files\Microsoft Office\Office\MSAccess.exe C:\YourDataBase.mdb", 1)
Cheers Man