macros

  • Thread starter Thread starter MarcoPolo
  • Start date Start date
M

MarcoPolo

Is it possible to start a macro loacted in afolder?
I mean that i have a server folder where i stored all the vb function
"H:\vb\_Function\"

As i have to load the same macro on 5 computers in anet...is it possible to
load it as external?
 
The code for Outlook VBA macros need to be stored within the Visual Basic
project inside Outlook (ALT+F11). All of the code there is actually stored
inside an .otm file, which is not recommended for distributing amongst
multiple users.

Ideally, any custom applications involving Outlook automation should be
designed as a COM Add-In, which you can deploy and install using Windows
Installer technology via .msi files.

Otherwise, see this link for more info:

Distributing Microsoft Outlook VBA Code:
http://www.outlookcode.com/d/distributevba.htm
 
Back
Top