What is the code that is run by the button.
Here, if I add a command button to a document that is based on the Normal.dotm template and have the following code on that button
Private Sub CommandButton1_Click()
Application.Run "Normal.modCalendar.Calendar"
End Sub
and in the Normal.dotm template, I have a module modCalendar that contains the code
Public strDate As String
Sub Calendar()
Dim mycalform As frmCalendar
Set mycalform = New frmCalendar
mycalform.Show
Set mycal = Nothing
Selection.InsertBefore strDate
End Sub
and there is a frmCalendar in the Normal.dotm template, I can use the Command Button multiple times and each time, the frmCalendar is displayed. The anchor symbol does appear alongside the Command Button, each time it has the focus (is clicked)
I would suggest however that rather than use an ActiveX Command Button, you add a button to the QAT that contains the code to cause the UserForm to be displayed