Now that I have a functional dynamic toolbar, I am wondering if the following script could be modified to make the toolbar buttons larger?


[VBA]
With .Controls.Add(Type:=msoControlButton)
.Caption = "Sort Database"
.FaceId = 928
.OnAction = "sortRows"
End With
[/VBA]