Auto Execute MS Access Macro with Windows Scheduler

  • Thread starter Thread starter JA
  • Start date Start date
J

JA

The Windows scheduler opens the MS Access application.
How can I get it to run a specific macro? Please help.
 
If you call the macro AutoExec, it will run whenever the database is opened,
manually or automatically.

If you call the macro MyMacro, set the following command in Windows
Scheduler:

"C:\FullPathToAccess\msaccess.exe" "C:\FullPathToDatabase\database.mdb" /x
MyMacro

HTH,

Kevin
 
Back
Top