Say i wanted to do something like this: I have 10 checkboxes,and when one checkbox is selected, a message box appears. How do I do that?
Printable View
Say i wanted to do something like this: I have 10 checkboxes,and when one checkbox is selected, a message box appears. How do I do that?
You could make your checkboxes part of a control array. Then the code would be:
Code:Private Sub Check1_Click(Index As Integer)
MsgBox "A Check Box was selected"
End Sub
Thanks!...