Foxtable(狐表)用户栏目专家坐堂 → [求助]增加行代码


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

主题:[求助]增加行代码

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


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2016/6/6 12:11:00 [显示全部帖子]

For Each dr As DataRow In DataTables("产品").Select("型号 = '" & Tables("父表").current("型号") & "'")
    Dim fdr As DataRow = DataTables("子表").find("编号 = '" & Tables("父表").current("编号") & "' and 品名 = '" & dr("品名") & "'")
    If fdr Is Nothing Then
        Dim ndr As DataRow = DataTables("子表").addnew
        ndr("编号") = Tables("父表").current("编号")
        ndr("品名") = dr("品名")
    End If
Next

 回到顶部