Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Progress Bar Control:

It is used to provide visual feedback to your users about the status of some task. It shows
a bar that fills in from left to right as the operation progresses. Let's click on a Progress
Bar control from the Toolbox and place it on the form. The main properties of a progress
bar are Value, Maximum and Minimum.

Timer Control:

Timer Control plays an important role in the Client side programming and Server side
programming, also used in Windows Services. By using this Timer Control, windows
allow you to control when actions take place without the interaction of another thread

Check Box:
CheckBox Control. The CheckBox control allows the user to set true/false or yes/no type options.
The user can select or deselect it. When a check box is selected it has the value True, and when
it is cleared, it holds the value False.
Radio Button:

The RadioButton control is used to provide a set of mutually exclusive options. The user can
select one radio button in a group. If you need to place more than one group of radio buttons in
the same form, you should place them in different container controls like a GroupBox control.

Difference between Radio button and Check Box

Radio button control Check Box control

Radio button allows only one option to


check box allows one or many options to
be selected out of several available
be selected
options

If the user has to select the languages


If we were asking a user to select the
known to him or can be spoken by him,
highest qualification, it would be either
then the best option would be to have
PG or graduation or some other
check boxes, as it’s quite possible for a
professional course. In that case, we
person to speak/know more than one
would go with a radio button.
language

Radio button have only 2 states:True, Check box have 3 states:Checked,


False Unchecked, Indeterminate

You might also like