以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  foxtable中动态获取A列最后一个不为空的行号  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=115083)

--  作者:有点甜
--  发布时间:2018/2/28 18:25:00
--  
Dim t As Table = Tables("表A")
Dim fdr = t.DataTable.find("第一列 is not null", "_Identify desc")
Dim i As Integer = t.findrow(fdr)
msgbox(i)