CheckBox Control in VB.NET is used to select the choice by checking or not checking a check box. Check boxes are used with text for
the corresponding check boxes.
Video:
Explanation:
The Check Box control lets the user selects or unselects an option.
You can include the statements Check1.Value=1 to mark the Check Box and Check1.Value=0 to unmark the Check Box, as well as use them to initiate certain actions.
The Text,Font,Font Color properties are set for the checkbox control.
Using the Checked property appropriate messages are displayed when the checkbox is checked and unchecked.