Foxtable(狐表)用户栏目专家坐堂 → 应为语句结束,错在哪里呢?


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

主题:应为语句结束,错在哪里呢?

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2014/11/28 14:04:00 [显示全部帖子]

Dim Cols1() As String = {"Identify","供方确认到货日期"}
Dim Cols2() As String = {"_Identify","orderSupDhTime"}
For Each dr1 As DataRow In DataTables("供方到货日期确认窗口_Table1").Select("供方确认到货日期 Is not null")
    Dim nr As Date = dr1(Cols1("供方确认到货日期"))
    Dim xh As Integer = dr1("Identify")
    Dim dr As DataRow
    dr = DataTables("orderList").Find("[_Identify] = '" & xh & "'")
    If dr IsNot Nothing Then
        dr("orderSupDhTime") = nr
    End If
Next

 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2014/11/28 17:24:00 [显示全部帖子]

For Each dr1 As DataRow In DataTables("供方到货日期确认窗口_Table1").Select("供方确认到货日期 Is not null")
    Dim xh As Integer = dr1("Identify")
    Dim dr As DataRow
    dr = DataTables("orderList").Find("[_Identify] = '" & xh & "'")
    If dr IsNot Nothing Then 
        Dim nr As Date = dr1("供方确认到货日期")
        dr("orderSupDhTime") = nr
    End If
Next


 回到顶部