M
Markus Donath
I want to create an Outlook-appointment using .NET VC.
My Visual Basic example starts with:
Dim oApp As Microsoft.Office.Interop.Outlook.Application = New
Microsoft.Office.Interop.Outlook.Application
But my C++ translation:
Microsoft::Office::Interop::Outlook::Application *oApp = new
Microsoft::Office::Interop::Outlook::Application;
does not compile. ('You cannot create an instance of an interface' or
something like that). Does anybody know, what's wrong here?
Markus
My Visual Basic example starts with:
Dim oApp As Microsoft.Office.Interop.Outlook.Application = New
Microsoft.Office.Interop.Outlook.Application
But my C++ translation:
Microsoft::Office::Interop::Outlook::Application *oApp = new
Microsoft::Office::Interop::Outlook::Application;
does not compile. ('You cannot create an instance of an interface' or
something like that). Does anybody know, what's wrong here?
Markus