Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Schedule Outlook 2003 Macro

Tags:

vba

outlook

I have an Outlook 2003 macro written in VBA.

I would like to schedule it so that it automatically runs at a certain time, say 01:00. The PC is always logged on.

I couldn't find anything which suggests how to do this.

like image 731
CompanyDroneFromSector7G Avatar asked Oct 24 '25 18:10

CompanyDroneFromSector7G


1 Answers

You could create a scheduled task on the PC to run daily at the specific time, and use the Outlook Command Line Switch to start the program and call your macro e.g:

"C:\Program Files\Microsoft Office\Office11\Outlook.exe" /autorun macroname

Update:

You may be able to use an API call to start a timer to run in the background of outlook, you could combine this with the VB Now() command to get the current time and if greater than your scheduling time you could trigger your macro, the API example can be found here:

http://www.outlookcode.com/threads.aspx?forumid=4&messageid=22831

like image 171
Matt Donnan Avatar answered Oct 26 '25 18:10

Matt Donnan



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!