Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Private Sub CheckBox1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles CheckBox1.Click
  2.         ' The CheckBox control's Text property is changed each time the
  3.         ' control is clicked, indicating a checked or unchecked state.
  4.         If CheckBox1.Checked = True Then
  5.             CheckBox1.Text = "Checked"
  6.         Else
  7.             CheckBox1.Text = "Unchecked"
  8.         End If
  9. End Sub