|
| Very
often when you visit a website, you are presented with a list of choices for you
to select which you like to receive info related to those choices. Choice
selection can easily be programmed in Visual Basic, the control involved is the
check box. The status of the check box is either checked or unchecked, and the
syntax is Checkbox1.Value=VbChecked or Checkbox1.Value=Unchecked. In the
following program , I constructed a three-choice selection list. After the user
made the selection, a message box will appear to display the list of choices
selected. The code is as follow:
|