Foxtable(狐表)用户栏目专家坐堂 → [求助]在窗口1中获取table1的新增行的上一行某列值,然后定位到新打开窗口表的相应行


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

主题:[求助]在窗口1中获取table1的新增行的上一行某列值,然后定位到新打开窗口表的相应行

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


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

先试试
 
Dim dr As Row = Tables("窗口1_Table1").Rows(Tables("窗口1_Table1").current.Index - 1)
Dim txt As String = dr("第二列")
Dim t As Table = Tables("窗口2_Table1")
For i As Integer = 0 To t.Rows.Count -1 
    If t.Rows(i)("第三列") = txt Then
        t.Position = i
        Exit For
    End If
Next

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


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

Dim cr As Row = Tables("窗口1_Table1").current
If cr IsNot Nothing Then
    Dim dr As Row = Tables("窗口1_Table1").Rows(iif(cr.index=0, 0, cr.index-1))
    Dim txt As String = dr("第二列")
    Dim t As Table = Tables("窗口2_Table1")
    For i As Integer = 0 To t.Rows.Count -1
        If t.Rows(i)("第三列") = txt Then
            t.Position = i
            Exit For
        End If
    Next
End If

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


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

Tables("窗口1_Table1").AddNew

 

Dim cr As Row = Tables("窗口1_Table1").current
If cr IsNot Nothing Then
    Dim dr As Row = Tables("窗口1_Table1").Rows(iif(cr.index=0, 0, cr.index-1))
    Dim txt As String = dr("第二列")
    Dim t As Table = Tables("窗口2_Table1")
    For i As Integer = 0 To t.Rows.Count -1
        If t.Rows(i)("第三列") = txt Then
            t.Position = i
            Exit For
        End If
    Next
End If


 回到顶部