Embed PowerPoint Viewer in C# Win Form

后端 未结 3 1979
走了就别回头了
走了就别回头了 2020-12-06 06:16

Is it possible to Embed a PowerPoint Viewer into a C# Windows Form?

I am currently use the following code:

objApp = new PowerPoint.Application();
            


        
相关标签:
3条回答
  • 2020-12-06 06:42

    Thanks for good links, http://support.microsoft.com/kb/304662 has useful info... That helped me :)

    0 讨论(0)
  • 2020-12-06 06:44

    See this link. You can also display the ppt in a WebBrowser control. This might also be useful.

    0 讨论(0)
  • 2020-12-06 06:44

    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.

    0 讨论(0)
提交回复
热议问题