Results 1 to 5 of 5

Thread: Getting a list of all fonts installed

  1. #1

    Thread Starter
    Member
    Join Date
    Feb 2000
    Posts
    44

    Post

    Hiya,

    Is there an API or other way of getting the system to return a list of all fonts that are installed on it?

    Thanx

    Matt

  2. #2
    Lively Member Ishamel's Avatar
    Join Date
    Nov 1999
    Location
    Edinburgh, Scotland
    Posts
    112

    Post

    This will display all available fonts in a list box.

    Code:
        Dim I   ' Declare variable.
        For I = 0 To Screen.FontCount - 1  ' Determine number of fonts.
        
            List1.AddItem Screen.Fonts(I)  ' Put each font into list box.
        Next I
    ------------------
    Ishamel
    [email protected]

    How can I tell you I love you when you are sitting on my face?

  3. #3
    New Member
    Join Date
    Aug 2000
    Posts
    2

    Question

    Can you format the list so that it is alphabetical?

  4. #4
    Guest
    Solinary: Can you format the list so that it is alphabetical?
    Set the Sorted property in the Listbox to True. That will put all the fonts in alphabetical order.

  5. #5
    New Member
    Join Date
    Aug 2000
    Posts
    2

    Smile

    Thank you

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