Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
633 B

  1. Attribute VB_Name = "LCIDFont"
  2. Option Explicit
  3. Public Sub SetFont(i_frm As Form, i_fnt As StdFont, i_fntColor As Long)
  4. On Error Resume Next
  5. If (i_fnt Is Nothing) Then
  6. Exit Sub
  7. End If
  8. Dim Ctrl As Control
  9. For Each Ctrl In i_frm.Controls
  10. ' If ((TypeOf Ctrl Is TextBox) Or _
  11. ' (TypeOf Ctrl Is ListBox) Or _
  12. ' (TypeOf Ctrl Is ComboBox) Or _
  13. ' (TypeOf Ctrl Is TreeView) Or _
  14. ' (TypeOf Ctrl Is ListView)) Then
  15. If (Ctrl.Tag = 1) Then
  16. Set Ctrl.Font = i_fnt
  17. Ctrl.ForeColor = i_fntColor
  18. End If
  19. Next
  20. End Sub