以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=90570)

--  作者:rgmtkgu
--  发布时间:2016/9/17 12:21:00
--  [求助]
求高人指点,如何在已设计好的狐表中将选定单元格自动求和显示在右下角
--  作者:cbt
--  发布时间:2016/9/17 13:18:00
--  
 系统SystemIdle事件(项目属性 里面)
Dim t As Table = CurrentTable
StatusBar.Message3= t.Aggregate(AggregateEnum.Sum, t.TopRow, t.LeftCol, t.BottomRow, t.RightCol)


--  作者:有点蓝
--  发布时间:2016/9/17 14:22:00
--  
新项目默认就有这个功能的,前提是:1,选定单元格包含数值列;2,启用自动计算http://www.foxtable.com/webhelp/scr/0176.htm



--  作者:rgmtkgu
--  发布时间:2016/9/17 21:39:00
--  

谢谢!