Create Office COM Add-Ins by Using VBA and Office Developer

B

bootlegg

How can I distribute this Outlook VbaProject.OTM code to multiple pcs without
user intervention?

Private Sub Application_Startup()

Set goWSHShell = CreateObject("WScript.Shell")

Message = goWSHShell.popup("This is a private computer system.", 5,
"Important Message")

End Sub
 
K

Ken Slovak - [MVP - Outlook]

See the information about distributing the VBA project at
http://www.outlookcode.com/d/vb.htm.

However, as that link points out distributing a VBA project is really the
worst way to distribute your Outlook code. A COM addin is preferable.
 
Top