Results 1 to 5 of 5

Thread: Loading Font Names into a ComboBox

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Mar 2001
    Location
    Southern California
    Posts
    733

    Loading Font Names into a ComboBox

    Does anyone know how to load all the font names into a combobox???

  2. #2
    Set the Sorted property to True and...
    VB Code:
    1. Dim i As Long
    2. For i = 0 To Screen.FontCount - 1
    3.     cboFonts.AddItem Screen.Fonts(i)
    4. Next i
    You can also use the Printer object with the same properties.

  3. #3

    Thread Starter
    Fanatic Member
    Join Date
    Mar 2001
    Location
    Southern California
    Posts
    733
    Thanks filburt

  4. #4
    New Member
    Join Date
    Oct 2001
    Location
    Dahlonega
    Posts
    7
    ya, thanks filburt i needed it too
    com.pi.ler. (noun) a magic spell that turns source code into error messages.

  5. #5
    I feel so helpful.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width