Well the compiler is correct, Checked is not a member of the Control class, so can't use it. But instead what you can do is thisVB Code:
Dim rbTemp As RadioButton For Each MPrd1 As Control In Me.Controls If TypeOf MPrd1 Is RadioButton Then rbTemp = MPrd1 rbTemp.Checked = False End If Next




Reply With Quote