Outlook Add-In Using VB6

  • Thread starter Thread starter Matt Harrold
  • Start date Start date
M

Matt Harrold

When I created the addin the designer asked for the
version of Outlook for which I am using, I selected 11 as
that is what I have installed on my machine.

How would I get that addin to work with office 2000 and
above????
 
You need to develop on a machine that has Outlook 2000 installed if
you want to use the designer to set up the registry entries for the
addin and if you want to use early binding. Otherwise you must use
late binding (all objects declared as Object), set up your own
registry entries and make very, very sure not to use any properties or
methods or events that aren't available in Outlook 2000 that are
available in Outlook 2003.
 
Back
Top