Calling Module from Autoexec Macro

RandWald

Registered User.
Local time
Today, 14:53
Joined
Jun 20, 2004
Messages
11
Hi. I want to run a module (ie: vb macro) from the autoexec macro. Which option do I use..run code, run command, run macro, or something completely different?? There is no "Run Module".

Thanks, Randy
 
You can't run a module - a module is an object in which a collection of subs and functions can be stored.

In a macro, you select RunCode and, in the box provided, put the name of the function within the module (you can't call a sub) that you want to run.

ie.



MyFunction()
 

Users who are viewing this thread

Back
Top Bottom