PowerPoint execution from within an application
-
Hi, We'd like to run a PowerPoint slideshow at the first time our application is started. Does anybody have an idea how to run the slideshow from within the application? Thanks a lot in advance. Snir yarom.
-
Hi, We'd like to run a PowerPoint slideshow at the first time our application is started. Does anybody have an idea how to run the slideshow from within the application? Thanks a lot in advance. Snir yarom.
-
You could use
ShellExecute()
to run the show. E.g.ShellExecute (NULL,"Open","c:\\a.pps",NULL,NULL,SW_SHOW);
You can do this inInitInstance()
etc of your application.this is this.
-
Hi, We'd like to run a PowerPoint slideshow at the first time our application is started. Does anybody have an idea how to run the slideshow from within the application? Thanks a lot in advance. Snir yarom.
search for using a powerpoint automation in your application. ShellExecute() wont work for you as it opens the .ppt or the .pps file, but into an external app.
TOXCCT >>> GEII power
[VisualCalc 3.0 updated ][Flags Beginner's Guide new! ]
-
Cheers. If i want to run the pps slideshow only once i need to registr a bool value (bool firstTime) in the registry. And to check its vaule each time the app starts. How do i read/write from/to the register this bool value ? Thanks in advance.
-
Hi, We'd like to run a PowerPoint slideshow at the first time our application is started. Does anybody have an idea how to run the slideshow from within the application? Thanks a lot in advance. Snir yarom.
And see http://support.microsoft.com/default.aspx?scid=kb;en-us;169505[^] maybe it is some helpful to you
_**
**_
WhiteSky