Auto Execute MS Access Macro with Windows Scheduler

J

JA

The Windows scheduler opens the MS Access application.
How can I get it to run a specific macro? Please help.
 
K

Kevin K. Sullivan

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
 
Top