Problem in using Outlook API

  • Thread starter Thread starter Yoavo
  • Start date Start date
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.
 
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.
 
Back
Top