Get Installed Fonts Program using VB.NET
Submitted by donbermoy on Thursday, February 27, 2014 - 13:01.
Good day! Today we will going to create a program that will display the installed fonts in your computer. We will just use the library/namespace of
3. Add
Download the source code below and try it! :)
For more inquiries and need programmer for your thesis systems in any kind of programming languages, just contact my number below.
Best Regards,
System.Drawing.Text
so that it can call the InstalledFontCollection method.
So, now let's start this tutorial!
1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application.
2. Next, add only one ListBox named ListBox1 that can hold the values of our installed fonts. Then add a button named Button1 labeled as "Get Fonts" for us to display the fonts in the ListBox. You must design your layout like this:

Imports System.Drawing.Text
to the topmost part of the code tab.
Imports System.Drawing.Text namespace is a library that contains the drawing properties such as lines and etc. It is also applicable in retrieving the used fonts.
4. Now, put this code in Button1_Click. This will trigger to put all the installed fonts in the ListBox.
- Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
- Dim f As New InstalledFontCollection
- For Each font As FontFamily In f.Families
- ListBox1.Items.Add(font.Name)
- Next
- End Sub
Explanation:
We initialized f as a variable which will hold and instantiate all the installed font values. Next, we code for a For Each Loop so that all the fonts will be displayed in the ListBox.For Each font As FontFamily In f.Families
means that we declare variable font as the FontFamily of the f as the InstalledFontColletion. Then all the fonts that was looped is displayed in our ListBox1.
Output:

Engr. Lyndon R. Bermoy
IT Instructor/System Developer/Android Developer
Mobile: 09079373999
Telephone: 826-9296
E-mail:[email protected]
Visit and like my page on Facebook at: Bermz ISware Solutions
Subscribe at my YouTube Channel at: SerBermz
Add new comment
- 194 views