Consulting

Results 1 to 2 of 2

Thread: Distribute Outlook Project

  1. #1

    Distribute Outlook Project

    Hi

    Whats the best way to distribute a simple Outlook project without too much heavy programming.

    Thanx

  2. #2
    VBAX Master Killian's Avatar
    Joined
    Nov 2004
    Location
    London
    Posts
    1,132
    Location
    To quote Microsoft:
    There is no simple way to distribute Outlook VBA code to users. Outlook is able to support only one VBA project at a time. Additional code cannot be added simply by attaching another project (as you do when you attach a new template to a document in Microsoft Word, for example). As a result, you must export the code to one or more module files, distribute those files to users, and then depend on the users to open the Visual Basic Editor and import the modules. An alternative would be to distribute an entire project file to users, but that would mean that any previous modifications to a user's project would be lost.
    Perhaps the only feasable way would be to use VB5 or 6 to compile a COM add-in and distribute that. More details here:
    http://msdn.microsoft.com/library/de...endingol2k.asp
    K :-)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •