Outlook methods

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am doing MS Outlook Plug-in by C#, but i cannot find the methods of
Outlook, I wish to familiar with what they are!!! Could you tell me where I
could find some useful information about it???

Thanks all u guys!!! Merry Christmas!!!
 
See http://www.outlookcode.com/d/outtech.htm for links to Visio maps of the
Outlook model, etc. Also, you can use the VBA object browser: Press ALt+F11
to open the VBA environment in Outlook, then press F2. Switch from <All
Libraries> to Outlook to browse all Outlook objects and their properties,
methods, and events. Select any object or member, then press F1 to see its
Help topic.
 
The VBA object browser is great when you're using VB. For C++ I find myself
looking through the .tlh and .tli files created by the compiler when you
import the
Outlook libraries. Between the VBA documentation and the .tli/.tlh files
you can
figure out what you need. It would be nice if there was better
documentation
specifically for C++, but I have never found it. I'm not sure about C#, but
I'm
guessing this may help you as well.

Mark
http://www.email-announcer.com
 
Back
Top