With wb.AddCheckGroup("form1","卡号","请选择卡号") '怎么才能取到这个返回值
For Each dr As DataRow In DataTables("卡号设置").sqlSelect("账套 = '" & zhangtao & "' and 币种 = '人民币'")
.Add("卡号" & dr("卡号"),dr("卡号"))
Next
End With
接收:
For Each key As String In e.PostValues.Keys
if key like "卡号*"
msgbox(key & ":" & e.PostValues(key))
end if
Next