VB for Custmize / Options

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'd like to control some of the options for the Toolbars using vb.
Specifically want to turn on the check for "Show Standard and Formatting
toolbars on two rows". Any Help is appreciated.

Ken
 
Ken,

I can't find a built-in property or method, but the following works...
'-------------------------------
Sub AnotherTest()
With Application.CommandBars("formatting")
.RowIndex = Application.CommandBars("standard").RowIndex + 1
.Left = Application.CommandBars("standard").Left
End With
End Sub
'-------------------------------

Jim Cone
San Francisco, USA
 
Jim,
Thank you so much... I totally wasn't thinking about the obvious. This
works as it should.

Still looking for Properties or Methods to handle the Customize / Options
but my initial objective has been met.

Thanks Tons,
Ken
 

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