Thread: user form
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Ryan H Ryan H is offline
external usenet poster
 
Posts: 489
Default user form

I tried that myself and when you show the userform the Font size doesn't
change.
--
Cheers,
Ryan


"JLGWhiz" wrote:

Yes. In the properties window for a userform, click on font and it opens a
dialog box to choose the style, size, color, etc. You can also do it by
code.

With UserForm1.Font
.Name = "Arial"
.Size = 12
.ColorIndex = 3
End With



"oldjay" wrote in message
...
Can you change the caption font size of a user form?



.