-- 作者:大红袍
-- 发布时间:2016/6/20 23:25:00
--
参考代码
Dim str As String = e.Form.controls("GroupBox1").Text
For Each c As object In e.Form.controls("GroupBox1").Children If Typeof c Is winform.RadioButton Then If c.checked Then str = str & " " & c.text End If End If Next msgbox(str)
|