Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 171
Default Commanbar toolbar - can we customize size?

One of the difficulties with the custom floating toolbar I've been
finding happens when one has few icons, i.e., just 1 or 2. The title
bar is as long as the toolbar is, which seems to be determined by the
# of icons in the toolbar. If there are many icons, the toolbar is
fairly long and one has more than ample space in the toolbar for an
adequate title. Also, I found in the archives how to remove the "X"
in the upper right-hand corner so that has freed up some toolbar title
bar space. However, in one case I have a worksheet that has only 1
icon and though the title is just 2 words, the second word gets
chopped off. In these cases, is there a way to make the toolbar a
certain size? I've googled in the archives but haven't had anything
pertinent come up re this.

The alternative would be to have no name, but the coding seems to
require a label in various places so don't see how that would work.
Better to make the toolbar the desired length.

Thank you! :oD

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,290
Default Commanbar toolbar - can we customize size?

S,
Add enough blank buttons to the Toolbar to make it sufficiently long.
Set the enabled property of the blanks to False.
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware



"StargateFan" wrote in message
One of the difficulties with the custom floating toolbar I've been
finding happens when one has few icons, i.e., just 1 or 2. The title
bar is as long as the toolbar is, which seems to be determined by the
# of icons in the toolbar. If there are many icons, the toolbar is
fairly long and one has more than ample space in the toolbar for an
adequate title. Also, I found in the archives how to remove the "X"
in the upper right-hand corner so that has freed up some toolbar title
bar space. However, in one case I have a worksheet that has only 1
icon and though the title is just 2 words, the second word gets
chopped off. In these cases, is there a way to make the toolbar a
certain size? I've googled in the archives but haven't had anything
pertinent come up re this.

The alternative would be to have no name, but the coding seems to
require a label in various places so don't see how that would work.
Better to make the toolbar the desired length.

Thank you! :oD

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default Commanbar toolbar - can we customize size?

Hi StargateFan,

Another possibility would be to use the customze menu to change the button
to image and text: the text can be a string of your choice or as many blanks
as you wish. The toolbar will expand to accept the button text.


---
Regards,
Norman


"StargateFan" wrote in message
...
One of the difficulties with the custom floating toolbar I've been
finding happens when one has few icons, i.e., just 1 or 2. The title
bar is as long as the toolbar is, which seems to be determined by the
# of icons in the toolbar. If there are many icons, the toolbar is
fairly long and one has more than ample space in the toolbar for an
adequate title. Also, I found in the archives how to remove the "X"
in the upper right-hand corner so that has freed up some toolbar title
bar space. However, in one case I have a worksheet that has only 1
icon and though the title is just 2 words, the second word gets
chopped off. In these cases, is there a way to make the toolbar a
certain size? I've googled in the archives but haven't had anything
pertinent come up re this.

The alternative would be to have no name, but the coding seems to
require a label in various places so don't see how that would work.
Better to make the toolbar the desired length.

Thank you! :oD



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 171
Default Commanbar toolbar - can we customize size?

On Fri, 23 Dec 2005 16:43:51 -0800, "Jim Cone"
wrote:

S,
Add enough blank buttons to the Toolbar to make it sufficiently long.
Set the enabled property of the blanks to False.


I got to thinking how funny this is as I struggle with this issue -
I'm sure lots of people get blank buttons they don't want, and here I
am needing one! <g

I googled the archive of this ng, but there wasn't any help re this
that I could find. I kept playing with the code - adding/removing
commands - to see what I could do to achieve a blank one but only have
a partial result.

Here is the code portion for the supposedly <g blank button and
wondering where I'm going wrong:


' 4. Put in a blank button to increase toolbar size.
Set myButton = .Controls.Add(Type:=msoControlButton, ID:=23)
With myButton
.Caption = ""
.Enabled = False
End With


No matter what I do, I don't get a blank. Sure, nothing happens when
I click on it which is good, but an image of an open folder appears
and it appears now as "greyed out". I imagine that no action occurs
because of the "false" in the enabled and lack of "action" line, but
the image is not blank and there is a tooltip with word "open" whether
or not I keep the caption line above.

I don't know how to fix this so that that "open" doesn't appear when
hovering but re the image, should I just assign a FaceID that has no
graphic, assuming there is even something of this kind? I'm going now
to check my Word doct with FaceIDs to see if there are any blank
buttons but was wondering if that was best approach for the image part
of this problem.

Thank you!

Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware



"StargateFan" wrote in message
One of the difficulties with the custom floating toolbar I've been
finding happens when one has few icons, i.e., just 1 or 2. The title
bar is as long as the toolbar is, which seems to be determined by the
# of icons in the toolbar. If there are many icons, the toolbar is
fairly long and one has more than ample space in the toolbar for an
adequate title. Also, I found in the archives how to remove the "X"
in the upper right-hand corner so that has freed up some toolbar title
bar space. However, in one case I have a worksheet that has only 1
icon and though the title is just 2 words, the second word gets
chopped off. In these cases, is there a way to make the toolbar a
certain size? I've googled in the archives but haven't had anything
pertinent come up re this.

The alternative would be to have no name, but the coding seems to
require a label in various places so don't see how that would work.
Better to make the toolbar the desired length.

Thank you! :oD


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 770
Default Commanbar toolbar - can we customize size?

StargateFan,

Remove the "ID := 23" from your code. I'm guessing that's the "File Open"
control. You don't want that. You can also remove the .Caption = "" line.

hth,

Doug


"StargateFan" wrote in message
...
On Fri, 23 Dec 2005 16:43:51 -0800, "Jim Cone"
wrote:

S,
Add enough blank buttons to the Toolbar to make it sufficiently long.
Set the enabled property of the blanks to False.


I got to thinking how funny this is as I struggle with this issue -
I'm sure lots of people get blank buttons they don't want, and here I
am needing one! <g

I googled the archive of this ng, but there wasn't any help re this
that I could find. I kept playing with the code - adding/removing
commands - to see what I could do to achieve a blank one but only have
a partial result.

Here is the code portion for the supposedly <g blank button and
wondering where I'm going wrong:


' 4. Put in a blank button to increase toolbar size.
Set myButton = .Controls.Add(Type:=msoControlButton, ID:=23)
With myButton
.Caption = ""
.Enabled = False
End With


No matter what I do, I don't get a blank. Sure, nothing happens when
I click on it which is good, but an image of an open folder appears
and it appears now as "greyed out". I imagine that no action occurs
because of the "false" in the enabled and lack of "action" line, but
the image is not blank and there is a tooltip with word "open" whether
or not I keep the caption line above.

I don't know how to fix this so that that "open" doesn't appear when
hovering but re the image, should I just assign a FaceID that has no
graphic, assuming there is even something of this kind? I'm going now
to check my Word doct with FaceIDs to see if there are any blank
buttons but was wondering if that was best approach for the image part
of this problem.

Thank you!

Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware



"StargateFan" wrote in message
One of the difficulties with the custom floating toolbar I've been
finding happens when one has few icons, i.e., just 1 or 2. The title
bar is as long as the toolbar is, which seems to be determined by the
# of icons in the toolbar. If there are many icons, the toolbar is
fairly long and one has more than ample space in the toolbar for an
adequate title. Also, I found in the archives how to remove the "X"
in the upper right-hand corner so that has freed up some toolbar title
bar space. However, in one case I have a worksheet that has only 1
icon and though the title is just 2 words, the second word gets
chopped off. In these cases, is there a way to make the toolbar a
certain size? I've googled in the archives but haven't had anything
pertinent come up re this.

The alternative would be to have no name, but the coding seems to
require a label in various places so don't see how that would work.
Better to make the toolbar the desired length.

Thank you! :oD






  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,290
Default Commanbar toolbar - can we customize size?

S,

Set myButton = .Controls.Add(Type:=msoControlButton)
myButton.Enabled = False

Jim Cone
San Francisco, USA
  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 171
Default Commanbar toolbar - can we customize size?

On Fri, 23 Dec 2005 22:56:59 -0800, "Doug Glancy"
wrote:

StargateFan,

Remove the "ID := 23" from your code. I'm guessing that's the "File Open"
control. You don't want that. You can also remove the .Caption = "" line.


<g Darn, something that simple. Done. Works great now, thanks!

Yes re the caption. I'd tried first without that and then with the
empty quotations but that "Open" kept persisting. Obviously that
wasn't what was putting that tooltip in there <g.

hth,


Yes it did, thanks! :oD

Doug


"StargateFan" wrote in message
.. .
On Fri, 23 Dec 2005 16:43:51 -0800, "Jim Cone"
wrote:

S,
Add enough blank buttons to the Toolbar to make it sufficiently long.
Set the enabled property of the blanks to False.


I got to thinking how funny this is as I struggle with this issue -
I'm sure lots of people get blank buttons they don't want, and here I
am needing one! <g

I googled the archive of this ng, but there wasn't any help re this
that I could find. I kept playing with the code - adding/removing
commands - to see what I could do to achieve a blank one but only have
a partial result.

Here is the code portion for the supposedly <g blank button and
wondering where I'm going wrong:


' 4. Put in a blank button to increase toolbar size.
Set myButton = .Controls.Add(Type:=msoControlButton, ID:=23)
With myButton
.Caption = ""
.Enabled = False
End With


No matter what I do, I don't get a blank. Sure, nothing happens when
I click on it which is good, but an image of an open folder appears
and it appears now as "greyed out". I imagine that no action occurs
because of the "false" in the enabled and lack of "action" line, but
the image is not blank and there is a tooltip with word "open" whether
or not I keep the caption line above.

I don't know how to fix this so that that "open" doesn't appear when
hovering but re the image, should I just assign a FaceID that has no
graphic, assuming there is even something of this kind? I'm going now
to check my Word doct with FaceIDs to see if there are any blank
buttons but was wondering if that was best approach for the image part
of this problem.

Thank you!

Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware



"StargateFan" wrote in message
One of the difficulties with the custom floating toolbar I've been
finding happens when one has few icons, i.e., just 1 or 2. The title
bar is as long as the toolbar is, which seems to be determined by the
# of icons in the toolbar. If there are many icons, the toolbar is
fairly long and one has more than ample space in the toolbar for an
adequate title. Also, I found in the archives how to remove the "X"
in the upper right-hand corner so that has freed up some toolbar title
bar space. However, in one case I have a worksheet that has only 1
icon and though the title is just 2 words, the second word gets
chopped off. In these cases, is there a way to make the toolbar a
certain size? I've googled in the archives but haven't had anything
pertinent come up re this.

The alternative would be to have no name, but the coding seems to
require a label in various places so don't see how that would work.
Better to make the toolbar the desired length.

Thank you! :oD




  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 171
Default Commanbar toolbar - can we customize size?

On Sat, 24 Dec 2005 04:44:45 -0800, "Jim Cone"
wrote:

S,

Set myButton = .Controls.Add(Type:=msoControlButton)
myButton.Enabled = False

Jim Cone
San Francisco, USA


Perfect, it now works great. The only thing I did was the change the
above slightly to conform to the code in the previous 3 buttons so the
portion of the code for button 4 in a test file actually looks like
this:




' 4. Put in a blank button to increase toolbar size.
Set myButton = .Controls.Add(Type:=msoControlButton)
With myButton
.Enabled = False
End With




Works perfectly! Thank you. :oD

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 770
Default Commanbar toolbar - can we customize size?

I'm glad I could help. Now if you ever need to know how to add an existing
Excel control to a custom toolbar, you'll know how (of if you're like me,
you'll have to Google yourself looking for this conversation) <g.

Doug


"StargateFan" wrote in message
...
On Fri, 23 Dec 2005 22:56:59 -0800, "Doug Glancy"
wrote:

StargateFan,

Remove the "ID := 23" from your code. I'm guessing that's the "File Open"
control. You don't want that. You can also remove the .Caption = ""
line.


<g Darn, something that simple. Done. Works great now, thanks!

Yes re the caption. I'd tried first without that and then with the
empty quotations but that "Open" kept persisting. Obviously that
wasn't what was putting that tooltip in there <g.

hth,


Yes it did, thanks! :oD

Doug


"StargateFan" wrote in message
. ..
On Fri, 23 Dec 2005 16:43:51 -0800, "Jim Cone"
wrote:

S,
Add enough blank buttons to the Toolbar to make it sufficiently long.
Set the enabled property of the blanks to False.

I got to thinking how funny this is as I struggle with this issue -
I'm sure lots of people get blank buttons they don't want, and here I
am needing one! <g

I googled the archive of this ng, but there wasn't any help re this
that I could find. I kept playing with the code - adding/removing
commands - to see what I could do to achieve a blank one but only have
a partial result.

Here is the code portion for the supposedly <g blank button and
wondering where I'm going wrong:


' 4. Put in a blank button to increase toolbar size.
Set myButton = .Controls.Add(Type:=msoControlButton, ID:=23)
With myButton
.Caption = ""
.Enabled = False
End With


No matter what I do, I don't get a blank. Sure, nothing happens when
I click on it which is good, but an image of an open folder appears
and it appears now as "greyed out". I imagine that no action occurs
because of the "false" in the enabled and lack of "action" line, but
the image is not blank and there is a tooltip with word "open" whether
or not I keep the caption line above.

I don't know how to fix this so that that "open" doesn't appear when
hovering but re the image, should I just assign a FaceID that has no
graphic, assuming there is even something of this kind? I'm going now
to check my Word doct with FaceIDs to see if there are any blank
buttons but was wondering if that was best approach for the image part
of this problem.

Thank you!

Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware



"StargateFan" wrote in message
One of the difficulties with the custom floating toolbar I've been
finding happens when one has few icons, i.e., just 1 or 2. The title
bar is as long as the toolbar is, which seems to be determined by the
# of icons in the toolbar. If there are many icons, the toolbar is
fairly long and one has more than ample space in the toolbar for an
adequate title. Also, I found in the archives how to remove the "X"
in the upper right-hand corner so that has freed up some toolbar title
bar space. However, in one case I have a worksheet that has only 1
icon and though the title is just 2 words, the second word gets
chopped off. In these cases, is there a way to make the toolbar a
certain size? I've googled in the archives but haven't had anything
pertinent come up re this.

The alternative would be to have no name, but the coding seems to
require a label in various places so don't see how that would work.
Better to make the toolbar the desired length.

Thank you! :oD





  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 171
Default Commanbar toolbar - can we customize size?

On Sat, 24 Dec 2005 10:28:07 -0800, "Doug Glancy"
wrote:

I'm glad I could help. Now if you ever need to know how to add an existing
Excel control to a custom toolbar, you'll know how (of if you're like me,
you'll have to Google yourself looking for this conversation) <g.


Yes! I seem to have enough basic XL2K code stuff down that I can
figure out how to usually find what I'm looking for now (most of the
time <g).

Thanks and Merry Xmas to you and yours and to everyone in this group!
:oD

Doug


"StargateFan" wrote in message
.. .
On Fri, 23 Dec 2005 22:56:59 -0800, "Doug Glancy"
wrote:

StargateFan,

Remove the "ID := 23" from your code. I'm guessing that's the "File Open"
control. You don't want that. You can also remove the .Caption = ""
line.


<g Darn, something that simple. Done. Works great now, thanks!

Yes re the caption. I'd tried first without that and then with the
empty quotations but that "Open" kept persisting. Obviously that
wasn't what was putting that tooltip in there <g.

hth,


Yes it did, thanks! :oD

Doug


"StargateFan" wrote in message
...
On Fri, 23 Dec 2005 16:43:51 -0800, "Jim Cone"
wrote:

S,
Add enough blank buttons to the Toolbar to make it sufficiently long.
Set the enabled property of the blanks to False.

I got to thinking how funny this is as I struggle with this issue -
I'm sure lots of people get blank buttons they don't want, and here I
am needing one! <g

I googled the archive of this ng, but there wasn't any help re this
that I could find. I kept playing with the code - adding/removing
commands - to see what I could do to achieve a blank one but only have
a partial result.

Here is the code portion for the supposedly <g blank button and
wondering where I'm going wrong:


' 4. Put in a blank button to increase toolbar size.
Set myButton = .Controls.Add(Type:=msoControlButton, ID:=23)
With myButton
.Caption = ""
.Enabled = False
End With


No matter what I do, I don't get a blank. Sure, nothing happens when
I click on it which is good, but an image of an open folder appears
and it appears now as "greyed out". I imagine that no action occurs
because of the "false" in the enabled and lack of "action" line, but
the image is not blank and there is a tooltip with word "open" whether
or not I keep the caption line above.

I don't know how to fix this so that that "open" doesn't appear when
hovering but re the image, should I just assign a FaceID that has no
graphic, assuming there is even something of this kind? I'm going now
to check my Word doct with FaceIDs to see if there are any blank
buttons but was wondering if that was best approach for the image part
of this problem.

Thank you!

Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware



"StargateFan" wrote in message
One of the difficulties with the custom floating toolbar I've been
finding happens when one has few icons, i.e., just 1 or 2. The title
bar is as long as the toolbar is, which seems to be determined by the
# of icons in the toolbar. If there are many icons, the toolbar is
fairly long and one has more than ample space in the toolbar for an
adequate title. Also, I found in the archives how to remove the "X"
in the upper right-hand corner so that has freed up some toolbar title
bar space. However, in one case I have a worksheet that has only 1
icon and though the title is just 2 words, the second word gets
chopped off. In these cases, is there a way to make the toolbar a
certain size? I've googled in the archives but haven't had anything
pertinent come up re this.

The alternative would be to have no name, but the coding seems to
require a label in various places so don't see how that would work.
Better to make the toolbar the desired length.

Thank you! :oD





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
Customize Toolbar Andy Excel Discussion (Misc queries) 1 March 8th 07 05:12 PM
Customize Icons In Toolbar Roger Excel Discussion (Misc queries) 2 June 7th 06 01:30 AM
Customize Toolbar DeLyn Excel Discussion (Misc queries) 1 January 30th 06 11:53 PM
customize toolbar won't save goplayoutside Excel Discussion (Misc queries) 1 October 11th 05 03:42 PM
How to permanently customize a toolbar?? Sam Excel Discussion (Misc queries) 1 June 6th 05 12:34 PM


All times are GMT +1. The time now is 02:20 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"