April 2006
Beginner
1114 pages
98h 16m
English
Use the Font object to change the appearance of text on a form, frame, or control. Use the Font property of the form or control to get a reference to this object. The Font object has the following members
:
Bold Italic Size StrikeThrough Underline Weight
The following code makes the text on a form’s controls bold:
Private Sub UserForm_Initialize( )
Dim c As Control
For Each c In Me.Controls
c.Font.Bold = True
Next
End SubRead now
Unlock full access