Another way to do it would be to have a routine that handles the check changed event of the radio buttons. Put the value of each radio button that you want them to have in their Tag property and then just have something like this:
vb Code:
'Declare variables
Dim RadioValue As String
Dim RadioName As String
Private Sub GetButtonValue_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles RadioButton1.CheckedChanged, RadioButton2.CheckedChanged, RadioButton3.CheckedChanged
'Assign variables the values and use these
RadioName = DirectCast(sender, RadioButton).Name
RadioValue = DirectCast(sender, RadioButton).Tag.ToString
End Sub