From external programms to run a procedure in a OutLook VBA?

N

NilovSerge

Hallo!
Word and Excel VBA Application object have very usefull method "Run"
So connecting from
external programm to Word/Excel I could use something like
...
ExcelObject.Run( 'ProcName',Param1,Param2... )
I didn't find something like this in VBA Outlook
If in VBA Outlook I can from external programms to run a procedure i
a OutLook VBA
 
S

Sue Mosher [MVP-Outlook]

Outlook has no equivalent. However, if a procedure has been declared Public
in the ThisOutlookSession module, and you instantiate an Outlook.Application
object (call it, say, objOL), you should be able to run the procedure as
OL.MyProcedure. Note, however, that this technique is unsupported.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top