以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  定位在最后一行  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=117261)

--  作者:deliangzhaoe
--  发布时间:2018/4/9 17:25:00
--  定位在最后一行
窗口中的页面集合,打开窗口后,所有页面中的表均定位在最后一行,切换页面后,页面中的表也定位在最后一行,如何设置?不要使用表名,表数量太多了。
谢谢

--  作者:有点甜
--  发布时间:2018/4/9 17:58:00
--  

For Each c As object In e.form.controls
    If typeof c Is winform.Table Then
        Dim t As Table = c.Table
        t.position = t.rows.count-1
    End If
Next


--  作者:deliangzhaoe
--  发布时间:2018/4/9 19:50:00
--  
厉害!谢谢!