The Font property does not appear to be saved correctly from the properties box. Also, if you set a custom font for a item, items which don’t have custom fonts can flicker to a null font when you move the mouse over them.
In the short term, this can be fixed by setting the font for the control in code:
Private Sub Form_Load()
tvw.Font = Me.Font
End Sub
|