Is it possible to have more than 1 Macro/Script in Outlook 2003?

  • Thread starter Thread starter XxLicherxX
  • Start date Start date
X

XxLicherxX

Hello everyone,

This is probably a stupid question, but I can't seem to figure this
out. I have recently created a Macro/Script to run as part of a rule I
have set up. I am now done with writing the code for this script and
wish to make another one from scratch.

The problem is, when I open the VBA editor, the code from the script I
just wrote is still there. I want to do something similar to the effect
of File -> New, but there is no option like that. How do I make a new
script from scratch?

Thanks

Dave
 
Outlook VBA doesn't use scripts. VBA procedures are organized into modules of three types -- regular, class and forms. If you want to create a new procedure, just start typing in the Sub or Function above or below the one you've already created. Or add a new module using the Insert menu and add your new routines there.
 
Back
Top