Problem in using Outlook API

Y

Yoavo

Hi,
In my application I need to use Outlook API's.
In my code I have the line:

using Outlook = Microsoft.Office.Interop.Outlook;

The problem is that this does not work on Computers without Office2007
installed.
Is there a way of using Outlook API for computers without Office2007
installed ?

Yoav.
 
F

Family Tree Mike

Yoavo said:
Hi,
In my application I need to use Outlook API's.
In my code I have the line:

using Outlook = Microsoft.Office.Interop.Outlook;

The problem is that this does not work on Computers without Office2007
installed.
Is there a way of using Outlook API for computers without Office2007
installed ?

Yoav.


Actually, that "using" statement will work fine if they don't have office,
it is the reference when you first use Outlook.Application, or some other
object that fails. They have to have "some" version of Outlook. For
instance, you could build to Office 2003 API, and your code would work with
2007.
 

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