以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  [求助]如何设置显示窗口TABLE中当前选了多少行?  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=119458)

--  作者:奶粉大王
--  发布时间:2018/5/25 10:23:00
--  [求助]如何设置显示窗口TABLE中当前选了多少行?
如题~~
--  作者:有点甜
--  发布时间:2018/5/25 10:27:00
--  

timertick事件

 

http://www.foxtable.com/webhelp/scr/1301.htm

 

 

If CurrentTable IsNot Nothing Then
    Dim s As  String
    s = "当前表:" &  CurrentTable.Name & space(4)
    s = s &  "记录数:" &  CurrentTable.BottomPosition - CurrentTable.TopPosition + 1
    StatusBar.Message1 = s
End If