-- 作者:大红袍
-- 发布时间:2015/6/14 20:06:00
--
Dim c1 As Object = e.Form.Controls("CheckBox1")
Dim c2 As Object = e.Form.Controls("CheckBox2")
Dim str As String = ""
If c1.Checked Then
str &= c1.Text & ","
End If
If c2.Checked Then
str &= c2.Text & ","
End If
Tables("表A").Current("第一列") = str.Trim(",")
[此贴子已经被作者于2015/6/14 20:05:56编辑过]
|