Dialog Boxes
Dialog Boxes
There are many built-in dialog boxes to be used in Windows forms for various tasks like opening
and saving files, printing a page, providing choices for colors, fonts, page setup, etc., to the user
of an application. These built-in dialog boxes reduce the developer's time and workload.
All of these dialog box control classes inherit from the CommonDialog class and override the
RunDialog() function of the base class to create the specific dialog box.
The RunDialog() function is automatically invoked when a user of a dialog box calls its
ShowDialog() function.
The ShowDialog method is used to display all the dialog box controls at run-time. It returns a
value of the type of DialogResult enumeration. The values of DialogResult enumeration are −
https://www.tutorialspoint.com/vb.net/vb.net_dialog_boxes.htm 1/2
1/1/23, 1:26 PM VB.Net - Dialog Boxes
All these above-mentioned classes have corresponding controls that could be added from the
Toolbox during design time. You can include relevant functionality of these classes to your
application, either by instantiating the class programmatically or by using relevant controls.
When you double click any of the dialog controls in the toolbox or drag the control onto the form,
it appears in the Component tray at the bottom of the Windows Forms Designer, they do not
directly show up on the form.
The following table lists the commonly used dialog box controls. Click the following links to check
their detail −
1
ColorDialog
It represents a common dialog box that displays available colors along with controls
that enable the user to define custom colors.
2
FontDialog
It prompts the user to choose a font from among those installed on the local computer
and lets the user select the font, font size, and color.
3
OpenFileDialog
It prompts the user to open a file and allows the user to select a file to open.
4
SaveFileDialog
It prompts the user to select a location for saving a file and allows the user to specify
the name of the file to save data.
5
PrintDialog
It lets the user to print documents by selecting a printer and choosing which sections
of the document to print from a Windows Forms application.
https://www.tutorialspoint.com/vb.net/vb.net_dialog_boxes.htm 2/2