B
Bre-x
Hi, I have this function :
Public Function open_app()
Call Shell("msaccess.exe ""M:\INV\Inv_JEFF.mdb""", 1)
DoCmd.Quit
End Function
I would like to pass a value ( the path of the mdb)
Something like:
Public Function open_app(the_path as String)
Call Shell("msaccess.exe" the_path,1)
Thank you all
Bre-x
Public Function open_app()
Call Shell("msaccess.exe ""M:\INV\Inv_JEFF.mdb""", 1)
DoCmd.Quit
End Function
I would like to pass a value ( the path of the mdb)
Something like:
Public Function open_app(the_path as String)
Call Shell("msaccess.exe" the_path,1)
Thank you all
Bre-x