Font Dialog Tutorial in Visual Basic.NET

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: design 3. Add FontDialog from the toolbox: Add 4. Now put add this code for your code module. This code is for Button1_Click:
  1. Public Class Form1
  2.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  3.         FontDialog1.ShowDialog()
  4.         If FontDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
  5.             Dim fontName As String
  6.             Dim fontSize As Integer
  7.             fontName = FontDialog1.Font.Name
  8.             fontSize = FontDialog1.Font.Size
  9.  
  10.             MsgBox(fontName & "  " & fontSize)
  11.         End If
  12.     End Sub
  13. End Class

Explanation:

When we click Button1 the Font Dialog will first show because of the syntax FontDialog1.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
  1.  fontName = FontDialog1.Font.Name
  2. fontSize = FontDialog1.Font.Size
  3.  MsgBox(fontName & "  " & fontSize)
Now, click Button1 and it will display the Font Dialog: click Then click OK button in Font Dialog: output 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,

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