Is it possible to Embed a PowerPoint Viewer into a C# Windows Form?
I am currently use the following code:
objApp = new PowerPoint.Application();
Thanks for good links, http://support.microsoft.com/kb/304662 has useful info... That helped me :)
See this link. You can also display the ppt in a WebBrowser control. This might also be useful.
For placement change the objPres.SlideShowWindow.Top
to 10 as example and objPres.SlideShowWindow.Left
to 12 so the upper left corner of the slide will be at (12,10) where left move it horizontal and the top move it down vertically.