I put three radio buttons on a form. Then, I wanted to handle them all from a single sub, so I made a Sub like this:
VB Code:
Private Sub RadioArray_Checked(ByVal sender As Object, ByVal e As System.EventArgs) Handles RadioButton1.Click, RadioButton2.Click, RadioButton3.Click End Sub
Now, how can I determine which radio button was clicked, and determine it's value as well?
TIA.




Reply With Quote