以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 复选框 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=136877) |
-- 作者:admin22327 -- 发布时间:2019/6/23 16:39:00 -- 复选框 我有个窗口副本表,选择多行复选框,将选中的复选框内容填入到关联表,代码怎么写呢,谢谢 此主题相关图片如下:222.png |
-- 作者:有点甜 -- 发布时间:2019/6/23 18:20:00 -- 循环每一行,合成字符串
http://www.foxtable.com/webhelp/topics/1636.htm
|
-- 作者:admin22327 -- 发布时间:2019/6/23 18:34:00 -- 你说的这个是删除,我看过了,我需要多选后,通过按钮填入到后面的那个盘点单明细表里面,代码不知道你怎么写呢,谢谢 |
-- 作者:有点蓝 -- 发布时间:2019/6/24 9:07:00 -- 参考:http://www.foxtable.com/webhelp/topics/1636.htm、http://www.foxtable.com/webhelp/topics/1533.htm 如: Dim Cols1() As String = {"来源列一","来源列二","来源列三"} Dim Cols2() As String = {"接收列一","接收列二","接收列三"} For Each dr1 As Row In Tables("表A").GetCheckedRows Dim dr2 As DataRow = DataTables("表B").AddNew() For i As Integer = 0 To Cols1.Length -1 dr2(Cols2(i)) = dr1(Cols1(i)) Next Next |