Scheduled task and a macro

  • Thread starter Thread starter BFB
  • Start date Start date
B

BFB

I would like to to create a Scheduled Task and have it
run a macro in my access database. The database is at ...

S:\Program Database\Tremont Databases and the macro is
called "Auto Send"

Any thoughts?
 
Use Windows Task Scheduler, or one of the many third-party
scheduling programs available today, to run the macro
using a command line like this...

"C:\PathToAccess\Msaccess.exe" "C:\PathToDB\MyDB.mdb" /x
macroname

Jim
 
Back
Top