View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Mark Ivey[_2_] Mark Ivey[_2_] is offline
external usenet poster
 
Posts: 171
Default 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