Eksemplet nedenfor viser hvordan du kan lage CommandBar -knapper/menyer som sender et eller flere argumenter til en makro.
eksemplet viser også hvordan du kan legge til et nytt element i hurtigmenyen for celler.
Sub AddCommandToCellShortcutMenu () Dim i As Integer, ctrl As CommandBarButton DeleteAllCustomControls 'delete the controls if they already exist' create the new controls With Application.CommandBars (25) 'the cell shortcut menu' add a common commandbarbutton Set ctrl = .Controls.Add (msoControlButton,,,, True) Med ctrl .BeginGroup = True .Caption = "New Menu1" .FaceId = 71 .State = msoButtonUp .Style = msoButtonIconAndCaption .Tag = "TESTTAG1" .OnAction = "MyMacroName2" With knapp som passerer ett strengargument Sett ctrl = .Controls.Add (msoControlButton,,,, True) Med ctrl .BeginGroup = False .Caption = "New Menu2" .FaceId = 72 .Style = msoButtonIconAndCaption .Tag = "TESTTAG2" .OnAction = "'MyMacroName2" "Ny meny2" "" "Avslutt med' legg til en knapp som passerer et strengargument Sett ctrl = .Controls.Add (msoControlButton,,,, True) Med ctrl .BeginGroup = False .Caption =" New Meny3 ".FaceId = 73 .Style = msoButtonIconAndCaption .Tag =" TESTTAG3 ".OnAction = "'MyMacroName2" "" & .Caption & "" "'" End With 'legg til en knapp som passerer to argumenter, en streng og et heltall Sett ctrl = .Controls.Add (msoControlButton,,,, True) Med ctrl. BeginGroup = False .Caption = "New Menu4" .FaceId = 74 .Style = msoButtonIconAndCaption .Tag = "TESTTAG4" .OnAction = "'MyMacroName3" "" & .Caption & "" ", 10'" End With End With Set ctrl = Nothing End Sub Sub DeleteAllCustomControls () 'slett kontrollene hvis de allerede eksisterer Dim i As Integer For i = 1 To 4 DeleteCustomCommandBarControl "TESTTAG" & i Next i End Sub Private Sub DeleteCustomCommandBarControl (CustomControlTag As String)' sletter ALLE CommandBar -kontroller med Tag = CustomControlTag On Error Resume Next Do Application.CommandBars.FindControl (,, CustomControlTag, False). Slett loop til Application.CommandBars.FindControl (,, _ CustomControlTag, False) Er ingenting på feil GoTo 0 End Sub 'eksempelmakroer kommandolinjeknappene Sub MyMacroName1 () MsgBox "Tiden er" og Format (Tid, "h h: mm: ss ") End Sub Sub MyMacroName2 (Valgfri MsgBoxCaption As String =" UKjent ") MsgBox" Tiden er "& Format (Time," hh: mm: ss "), _" Denne makroen ble startet fra " & MsgBoxCaption End Sub Sub MyMacroName3 (MsgBoxCaption As String, DisplayValue As Integer) MsgBox "Tiden er" & Format (Time, "hh: mm: ss"),, _ MsgBoxCaption & "" & DisplayValue End Sub