category

home / developersection / category

TabControl in VB.Net
vb.net 13-Dec-2010
TabControl in VB.Net

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

SplitContainer Control in VB.Net
vb.net 13-Dec-2010
SplitContainer Control in VB.Net

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.

RichTextBox Control in VB.Net
vb.net 13-Dec-2010
RichTextBox Control in VB.Net

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

ProgressBar Control in VB.Net
vb.net 13-Dec-2010
ProgressBar Control in VB.Net

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 in VB.Net
vb.net 13-Dec-2010
PictureBox Control in VB.Net

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.

OpenFileDialog Control in VB.Net
vb.net 13-Dec-2010
OpenFileDialog Control in VB.Net

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

PrintDocument PrintPreviewDialog and PrintDialog Control in VB.Net
vb.net 13-Dec-2010
PrintDocument PrintPreviewDialog and PrintDialog Control in VB.Net

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 Control in VB.Net
vb.net 12-Dec-2010
ErrorProvider Control in VB.Net

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

How should use CheckBox Control in VB.Net
vb.net 12-Dec-2010
How should use CheckBox Control in VB.Net

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

WebBrowser Control in VB.Net
vb.net 12-Dec-2010
WebBrowser Control in VB.Net

The web browser Control in VB.NetThe WebBrowser Control Enables to navigate Web pages inside your form. Navigate method of WebBrowser Control - Load

TreeView Control in VB.Net
vb.net 12-Dec-2010
TreeView Control in VB.Net

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

Timer Control in VB.Net
vb.net 12-Dec-2010
Timer Control in VB.Net

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