Problems with Font Property

Summary

Id: 13463.1
Type: Bug Bug
Current Status: Open

Detail

15 Nov 2003 Open Steve McMahon

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