COMMAND BAR - one of custom bars not showing

itr674

Well-known Member
Joined
Apr 10, 2002
Messages
1,786
Office Version
  1. 2016
Platform
  1. Windows
I have built a menu that builds one custom bar and then I static build a second one in the code. The problem is the menu built one will not show, but it is built. I think the problem is in this code (lines 8 thru 13) but I can't figure it out ...<pre>On Error Resume Next
For Each CB In Application.CommandBars
If CB.Type = msoBarTypeNormal Then
If CB.Visible = True Then
CBNum = CBNum + 1
With Sheet1
.Cells(CBNum, 1) = CB.Name
If CB.Name = "AC Status" Then
CB.Visible = True
End If
If CB.Name = "Formatting2" Then
CB.Visible = True
Else
CB.Visible = False
End If
End With
End If
End If
Next CB</pre>
This message was edited by em on 2003-02-09 17:23
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,072
Latest member
DW Draft

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top