Font Dialog Tutorial in Visual Basic.NET
Submitted by donbermoy on Monday, February 17, 2014 - 11:22.
Font Dialog is one of the important features in VB.NET The Font because it lets the user choose attributes for a font, such as font family and associated font style, font size, effects , and a script.
Now, let's start this Font Dialog 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 Button named Button1 and labeled it as "Click to Show Font Dialog". You must design your layout like this:
3. Add FontDialog from the toolbox:
4. Now put add this code for your code module. This code is for Button1_Click:
Now, click Button1 and it will display the Font Dialog:
Then click OK button in Font Dialog:
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,


- Public Class Form1
- Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
- FontDialog1.ShowDialog()
- If FontDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
- Dim fontName As String
- Dim fontSize As Integer
- fontName = FontDialog1.Font.Name
- fontSize = FontDialog1.Font.Size
- End If
- End Sub
- End Class
Explanation:
When we click Button1 the Font Dialog will first show because of the syntaxFontDialog1.ShowDialog()
. Then, we select for our desired font, font size, the script, and the effect. If we click the button ok on the Font Dialog, it will grab the desired Font Name and Font Size to be displayed in a form of Message Box as we code - fontName = FontDialog1.Font.Name
- fontSize = FontDialog1.Font.Size


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
- 313 views