powerpoint toolbars

  • Thread starter Thread starter anonymous
  • Start date Start date
A

anonymous

Is there a way to creat global powerpoint macros that can be attached
to a toolbar and is available to all presentations?
 
Works Great. However is there a way to tell it to "dock" the tool bar
on the right side of the powerpoint window?
 
Works Great. However is there a way to tell it to "dock" the tool bar
on the right side of the powerpoint window?

When creating the toolbar or afterwards, set its .Position property

With Application.CommandBars("YourToolbarName")
.Position = msoBarRight
End with

You might want to do this the first time you create the toolbar, or even every
time you start PPT if it's for your own use. If it's for other users, docking
it once isn't unreasonable, but if you override the user's choice in docking
every time PPT starts, they'll say very unpleasant things about you behind your
back. Or even in front of it. ;-)
 

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