Answers for "commandbar"

VBA
0

CommandBars

Set myBar = CommandBars("Custom") 
Set myControl = myBar.Controls _ 
    .Add(Type:=msocontrolButton) 
With myControl 
    .FaceId = 2 
    .OnAction = "!<FinanceAddIn>" 
End With 
myBar.Visible = True
Posted by: Guest on June-24-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language