Interop.Outlook.dll for Outlook 2007 not in PIAs?

  • Thread starter Thread starter Brad Isaac
  • Start date Start date
B

Brad Isaac

Hi,

I have a working app that uses interop.outlook.dll to export items to
Outlook calendar. I downloaded the Primary Interop Assemblies for
Office 2k7 today and still cannot get a working outlook.interop.dll to
import.

Are there any dll gurus out there who can help me get this up and
running with Outlook 2007? I am using VS 2005.

Thanks
 
Brad,

Did you set a reference to your DLL?

By the way, you mostly get earlier and a more proper answer to your
questions if you ask this to a language newsgroup as there are for C#, VB
and C++

Cor
 
I have just today set up an interface to Outlook 2007

All I did was in the project under references

Add Reference > COM > Microsoft Outlook 12.0 Object Library

The Ms.Office.Core and Ms.Office.Interop.Outlook are added.

then in code

using Outlook = Microsoft.Office.Interop.Outlook;

then

Outlook.Application oApp = new Outlook.Application( );

etc.
 
I have just today set up an interface to Outlook 2007

All I did was in the project under references

Add Reference > COM > Microsoft Outlook 12.0 Object Library

The Ms.Office.Core and Ms.Office.Interop.Outlook are added.

then in code

using Outlook = Microsoft.Office.Interop.Outlook;

then

Outlook.Application oApp = new Outlook.Application( );

etc.

David, Thanks for the insight. I'll give it a try!
 
Back
Top