Link to home
Start Free TrialLog in
Avatar of coperations07
coperations07Flag for United States of America

asked on

Set Slide Show to Secondary Monitor

Hi,
I'm using powerpoint 2000.
The code below is the code I'm using in the open event of a slide show.  It is pretty much the same settings that can be set my manually going to Slide Show on the main menu and selecting Set up Show...
The only setting I can't find the code for is the "Show On:" setting. I want to set it to the secondary monitor.  I've tried to manually change this setting, but it won't save for some reason, so I want to pass the setting through the code.  How can I do this?

Thx,
Dave
With ActivePresentation.SlideShowSettings
        .ShowType = ppShowTypeKiosk
        .LoopUntilStopped = msoTrue
        .ShowWithNarration = msoTrue
        .ShowWithAnimation = msoTrue
        .RangeType = ppShowAll
        .AdvanceMode = ppSlideShowUseSlideTimings
        .PointerColor.SchemeColor = ppForeground
        .Run
    End With

Open in new window

Avatar of Charltp5
Charltp5
Flag of United Kingdom of Great Britain and Northern Ireland image

I don't believe that is an option in the PowerPoint Object Model. More likelyn to be an issue with your PC's setup / graphics card.
ASKER CERTIFIED SOLUTION
Avatar of coperations07
coperations07
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial