Student FYP - Creating Outlook 2003 Addin How do I ?

  • Thread starter Thread starter ITrishGuru
  • Start date Start date
I

ITrishGuru

Hi all,
For my IT final year project I have to access mail items in outlook
2003 and parse them.
I have read and researched on the net and library for about a week
now.
I have to do the project in c# using visualc# 2005 Express Edition.

I know this may limit me to manully coding a little more but I dont
mind that.
So far I think I have to create a COM adddin and communicate via
outlook interpo assemblies to outlook
DO I have to use the COM interface IDTExtensibility2?

Is it simple enough to get a button to appear on the outlook toolbar?
I have seen plently examples that use VSTO & vc# 2005 pro but I dont
have access to those.

Any ideas, hints, tips are all welcome.
Kevin.
 
Kevin,

Yes, IDTExtensibility2 is the interface that you will have to implement.
You will basically hold on to a reference to the application hosting your
add-in and then use the object model of the application (in this case,
Outlook) to add menu items, hook up to events, etc, etc.
 
Kevin,

Yes, IDTExtensibility2 is the interface that you will have to implement.
You will basically hold on to a reference to the application hosting your
add-in and then use the object model of the application (in this case,
Outlook) to add menu items, hook up to events, etc, etc.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)




Hi all,
For my IT final year project I have to access mail items in outlook
2003 and parse them.
I have read and researched on the net and library for about a week
now.
I have to do the project in c# using visualc# 2005 Express Edition.
I know this may limit me to manully coding a little more but I dont
mind that.
So far I think I have to create a COM adddin and communicate via
outlook interpo assemblies to outlook
DO I have to use the COM interface IDTExtensibility2?
Is it simple enough to get a button to appear on the outlook toolbar?
I have seen plently examples that use VSTO & vc# 2005 pro but I dont
have access to those.
Any ideas, hints, tips are all welcome.
Kevin.- Hide quoted text -

- Show quoted text -

Thanks for that
 
No, it's pretty painful but doable. There is an outlook newsgroup that you
can post this to or google to get the code.
 
Back
Top