That's right . I've just figured it out ! . To avoid a lot of hassle , use Click event .
VB Code:
  1. Private Sub radQ1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles radQ1.Click, radQ2.Click, radQ3.Click, radQ4.Click
  2.  
  3.         Select Case DirectCast(sender, RadioButton).Name
  4.             Case "radQ1"
  5.                 MsgBox("You just changed the radio button.")
  6.                 'FillDataGrid()
  7.             Case "radQ2"
  8.                 MsgBox("You just changed the radio button.")
  9.                 'FillDataGrid()
  10.             Case "radQ3"
  11.                 MsgBox("You just changed the radio button.")
  12.                 'FillDataGrid()
  13.             Case "radQ4"
  14.                 MsgBox("You just changed the radio button.")
  15.                 'FillDataGrid()
  16.         End Select
  17.  
  18.     End Sub