S
Steve
MS-VS
C#
I've added System, Microsoft.Office.Core and PowerPoint
Object Libraries to my project. I can see them
under "References" however with the libraries loaded:
PowerPoint.Application pptApp = new PowerPoint.Application
();
//This DOES NOT cause compiler error
pptApp.Visible =
Microsoft.Office.Core.MsoTriState.msoFalse;
//This DOES cause compiler error
pptApp.Visible = MsoTriState.msoFalse;
I tried deleting the references and recreating them again,
no luck. Why?
Steve
C#
I've added System, Microsoft.Office.Core and PowerPoint
Object Libraries to my project. I can see them
under "References" however with the libraries loaded:
PowerPoint.Application pptApp = new PowerPoint.Application
();
//This DOES NOT cause compiler error
pptApp.Visible =
Microsoft.Office.Core.MsoTriState.msoFalse;
//This DOES cause compiler error
pptApp.Visible = MsoTriState.msoFalse;
I tried deleting the references and recreating them again,
no luck. Why?
Steve