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

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
 
C

Cor Ligthert[MVP]

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
 
D

David Coleman

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.
 
B

Brad Isaac

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!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top