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:
  1. Private Sub RadioArray_Checked(ByVal sender As Object, ByVal e As System.EventArgs) Handles RadioButton1.Click, RadioButton2.Click, RadioButton3.Click
  2.  
  3.  
  4. End Sub


Now, how can I determine which radio button was clicked, and determine it's value as well?

TIA.