How do I make it so if the check box is clicked, then run code over and over again really fast? I tried to use the Do / Loop and GoTo, but they both just freeze the program.
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
Do While CheckBox1.CheckState = CheckState.Checked
A = A + 1
TextBox1.Text = A
Loop
End Sub
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
Do While CheckBox1.CheckState = CheckState.Checked
A = A + 1
TextBox1.Text = A
Loop
End Sub