Foxtable(狐表)用户栏目专家坐堂 → [求助] 防止重复记录


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

主题:[求助] 防止重复记录

帅哥,在线噢!
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:107240 积分:545461 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2019/8/31 8:01:00 [显示全部帖子]

Dim t1 As Table = Tables("生产任务单")
Dim nmb() As String = {"生产任务单号","产品名称","数量","PrintTime"}
Dim nma() As String = {"生产任务单号","PartNo","Qty","PrintTime"}
For r As Integer = t1.TopPosition To t1.BottomPosition
    Dim r1 As Row = t1.rows(r)
    Dim dr As DataRow = DataTables("PrintHistory").Find("PartNo='" & r1("PartNo") & "'")
    If dr Is Nothing Then
        dr = DataTables("PrintHistory").AddNew
        For i As Integer = 0 To nma.Length - 1
            dr(nma(i)) = r1(nmb(i))
        Next
    End If
Next

 回到顶部