I just need to create a .pptx
file with 1 dummy slide using C # and save it in the current directory. Can someone tell me how to do this?
So far I have this code for creating a Powerpoint presentation:
Microsoft.Office.Interop.PowerPoint.Application obj = new Application(); obj.Visible = Microsoft.Office.Core.MsoTriState.msoTrue;
source share