Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
Can anyone tell me the problem here? I'm adding a toolbar that does various things that are useful to me. It works fine right up to the msoContolButtonDropDown, upon trying to add which I get error 5, invalid procedure call/argument. Does the dropdown button not work properly? Or, more likely, am I missing something? Cheers, Jeff With CommandBars.Add(Name:="Jaffa's Toolbar") With .Controls.Add(Type:=msoControlButton) .OnAction = "GenFooter" .FaceId = 29 .TooltipText = "Add Footer" End With With .Controls.Add(Type:=msoControlButton) .OnAction = "Nofooter" .FaceId = 3265 .TooltipText = "Remove Footer" End With With .Controls.Add(Type:=msoControlButton) .OnAction = "Footeropt" .FaceId = 5598 .TooltipText = "Footer Options" End With With .Controls.Add(msoControlComboBox) .OnAction = "SheetSel" .Tag = "cmdSheetSel" End With With .Controls.Add(msoControlButton) .OnAction = "RowSel" .FaceId = 7008 .TooltipText = "Select whole rows" End With With .Controls.Add(msoControlButton) .OnAction = "ColSel" .FaceId = 7009 .TooltipText = "Select whole columns" End With With .Controls.Add(msoControlButton) .OnAction = "RangCalc" .TooltipText = "Recalculate selection" .FaceId = 1952 End With With .Controls.Add(msoControlButton) .OnAction = "CopyFolderLink" .TooltipText = "Copy folder tree" .FaceId = 1667 End With With .Controls.Add(msoControlButtonDropdown) .Tag = "cmdCalcChange" Select Case Application.Calculation Case xlCalculationAutomatic .FaceId = 6735 Case xlCalculationManual .FaceId = 6743 Case xlCalculationSemiautomatic .FaceId = 6751 End Select With .AddItem .OnAction = "CalcChangeM" .TooltipText = "Manual calculation" .FaceId = 6743 End With With .AddItem .OnAction = "CalcChangeS" .TooltipText = "Semiautomatic calculation" .FaceId = 6751 End With With .AddItem .OnAction = "CalcChangeA" .TooltipText = "Automatic calculation" .FaceId = 6735 End With End With End With |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
One command in one cell initiating another command in another cel. | Excel Worksheet Functions | |||
command code ( GOTO command) in formula | New Users to Excel | |||
command button add another command | Excel Discussion (Misc queries) | |||
Pivot Table Error Message - "Command Text not set for command obje | Excel Discussion (Misc queries) | |||
Excel has a "Find Next" command but no "Find Previous" command. | Excel Discussion (Misc queries) |