获取一组radiobutton选中项
获取一组radiobutton选中项只能用遍历的方法吗???
假定Form1中有一个分组GroupBox1:
Dim a As Control
For Each a In Me.GroupBox1.Controls
If TypeOf a Is RadioButton Then MsgBox(a.Text)
Next
其它的你可以举一反三了