Add button to toolbar

D

dew

Using VBA I want to add a button to the toolbar that will run a macro. The
recorded macro follows. It doesn't put a name on the button and I want to do
that.

Thanks.

CommandBars("Standard").Controls.Add Type:=msoControlButton, ID:=40001,
Before:=29, Parameter:="Macro ""Module9.TestFont"""
 
Top