Get List of Installed Fonts Using ListBox in VB.Net

This Tutorial is all about Get List of Installed Fonts Using ListBox in VB.Net. In this tutorial you will be able to Get List of Installed Fonts Using ListBox in VB.Net. So lets get Started:

  • First is open the Visual Basic, Select File on the menu, then click New and create a new project.

  • Then a New Project Dialog will appear. You can rename your project, depending on what you like to name it. After that click OK

  • After that, design your form like this just like what I’ve shown you below.
    Add a ListBox and a Button from the Toolbox.
  • Got to Code Page and add this Following Declaration.
    [vbnet]
    Imports System.Drawing.Text
    [/vbnet]
  • Add this code to the Button.
    [vbnet]
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim fonts As New InstalledFontCollectionFor Each one As FontFamily In fonts.Families
    ListBox1.Items.Add(one.Name)
    Next
    End Sub

    [/vbnet]

  • Click F5 to run the Program.
    Output:

If you have any comments or suggestions about on Get List of Installed Fonts Using ListBox in VB.Net, please feel free to contact our webpage.

Download Get List of Installed Fonts Using ListBox in VB.Net Here

Other Articles Readers might read:

Leave a Comment