Hi,
What I'm trying to do is,
once the users select the files they want to merge, they select a button which will:
1. Open an instance of powerpoint
2. Open the first of the files selected by the user
3. Copy/ export that slides from that presentation
4. Paste into the instance of powerpoint (in point 1 above)
5. Close the first file
... repeat these steps for all the rest of the files selected by the user
I know what needs to be done but I have no idea how to go about the syntax in VB/ C#
//I know I need to have the following directive:
//Maybe the following:
//the location of your powerpoint presentation
But have no idea where to go from here ...
Any help would be very much appreciated ..
Thanks
J
What I'm trying to do is,
once the users select the files they want to merge, they select a button which will:
1. Open an instance of powerpoint
2. Open the first of the files selected by the user
3. Copy/ export that slides from that presentation
4. Paste into the instance of powerpoint (in point 1 above)
5. Close the first file
... repeat these steps for all the rest of the files selected by the user
I know what needs to be done but I have no idea how to go about the syntax in VB/ C#
//I know I need to have the following directive:
Code:
using PowerPoint = Microsoft.Office.Interop.PowerPoint;
Code:
PowerPoint.Application oPPT; PowerPoint.Presentations objPresSet;
Code:
string strPres; strPres = @"mpPres.ppt";
Any help would be very much appreciated ..
Thanks
J
Comment