Hi,
Thank you for posting.
To stop from shrinking text size in the CommandButton everytime you click, please refer to the following code:
'To save the original font size in CommandButton1.
Dim curFontSize As Currency
'###############################################################
'Set the text size in CommandButton1 back to the recorded text size.
'###############################################################
Private Sub CommandButton1_Click()
CommandButton1.Font.Size = curFontSize
End Sub
'#################################################
'Record the original text size in CommandButton1.
'#################################################
Private Sub UserForm_Initialize()
curFontSize = CommandButton1.Font.Size
End Sub
have a great day!
Cristin Yan