Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default VB for Custmize / Options

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
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,290
Default VB for Custmize / Options

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


"vb_Sagacious" wrote in message
...
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

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default VB for Custmize / Options

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

"Jim Cone" wrote:

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


"vb_Sagacious" wrote in message
...
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


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
tools options view window options Joe[_14_] Excel Discussion (Misc queries) 1 November 11th 09 04:08 PM
IF with 3 options ekkeindoha Excel Worksheet Functions 1 September 4th 07 06:09 AM
how do I add more toolbar options to my right click options Rosie Excel Discussion (Misc queries) 1 August 11th 06 04:52 PM
Options Access Front End Excel Discussion (Misc queries) 1 November 22nd 05 01:41 PM
FTP options Kosta Excel Discussion (Misc queries) 2 March 23rd 05 04:03 AM


All times are GMT +1. The time now is 06:15 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"