home / developersection / category
The TabControl in VB.NetWhere The TabControl is a container control that allows you to display multiple tabs on a single form and it allowed switchi
A SplitContainer has two panels. The first panel is represented by Panel1 and second panel is represented by Panel2. These panels can have their own properties and events.
The RichTextBox Control in VB.NetThe RichTextBox allows formatting the text. It also provides the facility to save the text in the file and restore
Progress Bar Control is used to display the progress of a task. Drag and drop ProgressBar Control from toolbox on the window Form. By default maximum
PictureBox control is used to display image. The images displayed can be any format like Bitmap, JPEG, and GIF, PNG or any other image format files. The PictureBox control is based on the Control class.
A OpenFileDialog control is used to select a file. OpenFileDialog provide files to the user and retrieves the user's file selection back to the program
The PrintDialog control is used to open the Windows Print Dialog. A PrintDocument component allows users to send an output to a printer. By the help
ErrorProvider allows us to set an error message for any control on the form when the input is not valid. When an error message is set, an icon indicat
A Checkbox control is used to display a check_box. Where the Checkbox control gives us an option to select, say, yes/no or true/false. A checkbox i
The web browser Control in VB.NetThe WebBrowser Control Enables to navigate Web pages inside your form. Navigate method of WebBrowser Control - Load
The TreeView control is used to display a hierarchy of nodes. You can expand and collapse these nodes by clicking them. How to use TreeView control
The Timer Control in VB.NetWhere A Timer control allows you to set a time interval to execute an event after some interval continuously. This is ve