Foxtable(狐表)用户栏目专家坐堂 → [求助]窗口Table选中数据校对问题


  共有2490人关注过本帖树形打印复制链接

主题:[求助]窗口Table选中数据校对问题

帅哥哟,离线,有人找我吗?
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110574 积分:562760 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2016/9/22 17:54:00 [显示全部帖子]

Dim cando As Boolean = True
Dim rs As List(of Row) = Tables("表A").GetCheckedRows
Dim bh As String = re(0)("单位代码")
For Each r As Row In rs
    If r.IsNull("物料编号") OrElse bh <> r("单位代码") Then
        cando = False
        Exit For
    End If
Next

If cando Then
    Dim dr As Row
    For Each r As Row In rs
        dr = Tables("表B").AddNew
        dr("物料编号") = r("物料编号")
        ......其它列
    Next
End If

 回到顶部