Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Toobar Customisation

Hi All,

I am working on a highly customised Citrix environment in which my Excel
toolbar setting won't stick. I wish to have the Standard and Formatting
toolbars in 2 rows, and the Drawing toolbar running as well. As I am somewhat
tired of having to do this manually every time, I am hoping there is code to
at least set the Standard and Formatting toolbars in 2 rows - the Drawing
toolbar I can cope with.

Thanks in advance.

Regards

Andrew
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,722
Default Toobar Customisation

Open a blank XL file, setup your toolbars, and close. Changes should be saved
to your Personal file.

If that doesnt' work, you can at least go to Tools, Customize-Options, and
select the box to display Standard and Format toolbars on seperate lines.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Andrew Glennie" wrote:

Hi All,

I am working on a highly customised Citrix environment in which my Excel
toolbar setting won't stick. I wish to have the Standard and Formatting
toolbars in 2 rows, and the Drawing toolbar running as well. As I am somewhat
tired of having to do this manually every time, I am hoping there is code to
at least set the Standard and Formatting toolbars in 2 rows - the Drawing
toolbar I can cope with.

Thanks in advance.

Regards

Andrew

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Toobar Customisation

Thanks Luke,

Unfortunately, each night and every tmie I login from scratch, the settings
are lost. From other topics, I suspect the file storing these settings is
being lost or corrupted.

Andrew

"Luke M" wrote:

Open a blank XL file, setup your toolbars, and close. Changes should be saved
to your Personal file.

If that doesnt' work, you can at least go to Tools, Customize-Options, and
select the box to display Standard and Format toolbars on seperate lines.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Andrew Glennie" wrote:

Hi All,

I am working on a highly customised Citrix environment in which my Excel
toolbar setting won't stick. I wish to have the Standard and Formatting
toolbars in 2 rows, and the Drawing toolbar running as well. As I am somewhat
tired of having to do this manually every time, I am hoping there is code to
at least set the Standard and Formatting toolbars in 2 rows - the Drawing
toolbar I can cope with.

Thanks in advance.

Regards

Andrew

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Toobar Customisation

Answered my own question with the following code:

With Application.CommandBars("Standard")
.Position = msoBarTop
.RowIndex = 3
.Left = 0
End With
With Application.CommandBars("Formatting")
.Position = msoBarTop
.RowIndex = 4
.Left = 0
End With
Application.CommandBars("Drawing").Visible = True

Thanks

Andrew

"Andrew Glennie" wrote:

Hi All,

I am working on a highly customised Citrix environment in which my Excel
toolbar setting won't stick. I wish to have the Standard and Formatting
toolbars in 2 rows, and the Drawing toolbar running as well. As I am somewhat
tired of having to do this manually every time, I am hoping there is code to
at least set the Standard and Formatting toolbars in 2 rows - the Drawing
toolbar I can cope with.

Thanks in advance.

Regards

Andrew

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
How do I put the file path on the toobar? Nancy Excel Discussion (Misc queries) 1 October 3rd 09 11:59 AM
Excel startup customisation Allan Boardman Excel Discussion (Misc queries) 2 July 24th 06 01:19 PM
Addin Macro in Toobar zSplash Excel Programming 5 July 23rd 06 05:28 PM
Saving VBA Toolbar Customisation RzB Excel Programming 2 October 31st 03 11:07 AM
Customisation of Chart Dialog Jon Peltier[_4_] Excel Programming 0 October 26th 03 01:13 AM


All times are GMT +1. The time now is 01:59 AM.

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

About Us

"It's about Microsoft Excel"