vba - hide the standard PP views toolbar

  • Thread starter Thread starter Silvester
  • Start date Start date
S

Silvester

Hi

How can I hide the standard PP views toolbar at the bottom of the PP
screen, ie: Normal, Outline, Slide, Slide Sorter, Slide Show views.

I need to do this by vba automation from A2000

TIA
 
Hi

How can I hide the standard PP views toolbar at the bottom of the PP
screen, ie: Normal, Outline, Slide, Slide Sorter, Slide Show views.

Not sure, but it might help to get a list of the command bars:

Sub ListBars()

Dim x as Long
For x = 1 to Application.CommandBars.Count
debug.print Application.CommandBars(x).Name
Next
End Sub

Then try making likely looking ones invisible
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top