How do distribute application to Outlook users?

  • Thread starter Thread starter GS
  • Start date Start date
G

GS

Hi,

I have written small VBA application in Outlook. How do I send it to users?
Ultimately I want to send them some kind of email or something with button
which click action will launch my Form.

Thanks,
G
 
This depends on the architecture of your solution, which I'm unsure of by the
details you provided:

1) If it's a custom form, you generally publish the form to a folder
library, or either the Personal or Organizational forms libraries. For more
info, see:

Distributing Microsoft Outlook Forms:
http://www.outlookcode.com/d/distributeforms.htm

2) If it's a COM Add-In developed with Visual Studio, you use installation
packages (like the free Visual Studio Installer) to build an .msi file to
install your add-in .dll and the necessary registry entries to connect the
add-in in Outlook. For more info, see:

Developing COM Add-ins for Microsoft Outlook:
http://www.outlookcode.com/d/comaddins.htm

3) If it's VBA macros inside Outlook, see

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