Assuming .NET 3.5 or later, LINQ is your best buddy:
vb.net Code:
  1. If Me.TableLayoutPanel1.Controls.OfType(Of RadioButton)().Any(Function(rb) rb.Checked) Then
  2.     'One of the RadioButton controls in TableLayoutPanel1 is checked.
  3. End If