How to run ppt slide one after one by Process.Start
-
please guide me what argument i need to pass with ppt files name when run with Process.Start as a result ppt slide should start automatically System.Diagnostics.Process.Start("pptfilename.pptx") thanks
tbhattacharjee
-
please guide me what argument i need to pass with ppt files name when run with Process.Start as a result ppt slide should start automatically System.Diagnostics.Process.Start("pptfilename.pptx") thanks
tbhattacharjee
Did you even TRY to Google for "PowerPoint command line arguments" before you posted this? It's called "reading the documentation".
A guide to posting questions on CodeProject
Click this: Asking questions is a skill. Seriously, do it.
Dave Kreskowiak -
Did you even TRY to Google for "PowerPoint command line arguments" before you posted this? It's called "reading the documentation".
A guide to posting questions on CodeProject
Click this: Asking questions is a skill. Seriously, do it.
Dave Kreskowiakgot this one but not sure does it solve my purpose Open the specified presentation file as a slide show. Example: "c:\program files\microsoft office\office12\POWERPNT.exe" /S "Presentation1.pptx" link from where i got it Command-line switches for PowerPoint 2007 and the PowerPoint Viewer 2007 - PowerPoint[^]
tbhattacharjee
-
got this one but not sure does it solve my purpose Open the specified presentation file as a slide show. Example: "c:\program files\microsoft office\office12\POWERPNT.exe" /S "Presentation1.pptx" link from where i got it Command-line switches for PowerPoint 2007 and the PowerPoint Viewer 2007 - PowerPoint[^]
tbhattacharjee
So did you keep reading all the way down the article, like to where it mentions the /N# switch? Apparently not. Research is a skill you MUST have to survive doing this job.
A guide to posting questions on CodeProject
Click this: Asking questions is a skill. Seriously, do it.
Dave Kreskowiak -
So did you keep reading all the way down the article, like to where it mentions the /N# switch? Apparently not. Research is a skill you MUST have to survive doing this job.
A guide to posting questions on CodeProject
Click this: Asking questions is a skill. Seriously, do it.
Dave KreskowiakHe's a help vampire
This space for rent
-
He's a help vampire
This space for rent
yes i googled it but face some problem. i use the below code
webBrowser1.Dock = DockStyle.Fill;
webBrowser1.Navigate("about.blank");
webBrowser1.Navigate(@"e:\Presentations-Tips.ppt");when i run the code then a dialog come which ask me to choose one option out of 3 and i select open option. after selection open option power point apps open but no slide show run in my webbrowser control. [here is the screen shot url] the problem is when i run the above code then first power point application is open which i do not want. also nothing start showing in web browser controls. basically i want to run ppt slide show in web browser controls but power point application will not run. now tell me how it will be possible and what code i need to use. thanks
tbhattacharjee
-
yes i googled it but face some problem. i use the below code
webBrowser1.Dock = DockStyle.Fill;
webBrowser1.Navigate("about.blank");
webBrowser1.Navigate(@"e:\Presentations-Tips.ppt");when i run the code then a dialog come which ask me to choose one option out of 3 and i select open option. after selection open option power point apps open but no slide show run in my webbrowser control. [here is the screen shot url] the problem is when i run the above code then first power point application is open which i do not want. also nothing start showing in web browser controls. basically i want to run ppt slide show in web browser controls but power point application will not run. now tell me how it will be possible and what code i need to use. thanks
tbhattacharjee
That's not your original code. You don't have the control over which slide is shown using the webbrowser control method.
A guide to posting questions on CodeProject
Click this: Asking questions is a skill. Seriously, do it.
Dave Kreskowiak