PowerPoint2003 show should not occupy whole screen

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi ,

PowerPoint Show occupy whole screen.Can it be run on just a part of screen.
I am using vb.net.

Any suggestions!

regards,
Anand
 
Yes, the vba code may be like the following:

Public WithEvents oPPT As PowerPoint.Application
.......
With oPPT.ActivePresentation.SlideShowSettings.Run
.Width = ScreenWidth
.Height = ScreenHeight
End With

Regards,

Karl
Web PowerPoint presentations with video, music and flash
http://www.presentersoft.com

"Anand" (e-mail address removed) wrote in message:
 
Back
Top