Calling Macro Scheduler Scripts from VB/VBA
I’m often asked how you can run Macro Scheduler macros from other programming languages, particularly VB. Macro Scheduler scripts can be run from the command line. See the help file topic “Command Line Options”. E.g.: msched.exe “c:\someplace\mymacro.scp” VB/VBA lets you execute external commands/applications via the Shell function: Shell “””c:\program files\macro scheduler 11\msched.exe”” “”c:\scripts\example.scp”””, vbNormalFocus […]