Foxtable(狐表)用户栏目专家坐堂 → [讨论]自动复制行的问题


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

主题:[讨论]自动复制行的问题

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


加好友 发短信
等级:超级版主 帖子:13837 积分:69650 威望:0 精华:0 注册:2016/11/1 14:42:00
  发帖心情 Post By:2017/2/16 14:30:00 [显示全部帖子]

表B加一列【外表编号】

 

If e.DataCol.Name = "核对" Then
    If e.DataRow("核对") = True Then
        Dim nma() As String = {"A1","A2","A3","A4"} 'A表数据来源列
        Dim nmb() As String = {"B1","B2","B3","B4"} 'B表数据接收列
        Dim dr As DataRow = DataTables("表B").find("外表编号 = '" & e.DataRow("_Identify") & "'")
       
        If dr Is Nothing Then DataTables("表B").AddNew
        For i As Integer = 0 To nma.Length - 1
            dr(nmb(i)) = e.DataRow(nma(i))
        Next
        dr("外表编号") = e.DataRow("_Identify")
    Else
        DataTables("表B").deletefor("外表编号 = '" & e.DataRow("_Identify") & "'")
       
    End If
End If


 回到顶部