In this section we will learn how to use CheckBoxes to allow a user to select several options at once.
CheckBoxes are similar to RadioButtons, however, they allow a user to select multiple options at once. They do not need to be grouped in order to function properly.
Prefix: chk
Example:
If chkComputers.Checked then
lblItems.Text = "computers"
End if