View Full Version : [SOLVED:] Hide slides from edit view w/o macros enabled
Aschrum
08-12-2013, 02:48 AM
Hi folks,
in a presentation using VBA I would like to hide all slides from the slide show and edit view, so completely from the users of other workstations, until macros are enabled.
Is there any kind of hiding like "veryhidden" (Excel) in PowerPoint VBA?
Greets
André
John Wilson
08-16-2013, 11:24 AM
There's no simple way to do that. The only way i can think of is to have vba insert the slides from a separate hidden file.
Aschrum
08-16-2013, 11:36 AM
Ok I wouldn't know how to do that, but that would be a perfect solution if it works from the servers. I'll have to ask the IT about it.
If so I'll restart googleing and maybe annoying you afterwards. ;)
John Wilson
08-17-2013, 12:46 AM
The basic code would be:
ActivePresentation.Slides.InsertFromFile "Path to hidden file", Index:=1 ' inserts all slides after slide 1
If you need to you can specify the range of slides to insert by adding SlideStart:=x, SlideEnd:=y
Example:
ActivePresentation.Slides.InsertFromFile "Path to hidden file", Index:=1,SlideStart:=1, SlideEnd:=3
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.