PPt objects in Project Explorer

  • Thread starter Thread starter Frans van Zelm
  • Start date Start date
F

Frans van Zelm

Hi there,

(I use PPt XP.)

Why doesn't the VB-editor show the slides in the Project Explorer tree?

I found that, after adding a VBA-control to a slide, that slide is shown.
Next,
I can set to hide the Master Slide objects in the properties window. Great!

But is my action 'legal'? And will it work in PPt 97 and 2K?

Thanks for your help.

Frans van Zelm
 
Why doesn't the VB-editor show the slides in the Project Explorer tree?
That's by design. You can get a reference to the slide easily enough.
I can set to hide the Master Slide objects in the properties window.
Great!
You can do the same via code:

ActiveWindow.Selection.SlideRange.DisplayMasterShapes = False
 
Back
Top