Can I change the format of a control at Runtine?
What type of control do you want changed?
What name have you given it?
Mark Ivey
Here is a basic example showing how you can change a commandbutton's
features when the userform initializes...
Private Sub UserForm_Initialize()
CommandButton1.Font.Bold = True
CommandButton1.Font.Size = 26
End Sub
|