以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]菜单事件SystemIdle问题 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=127563) |
||||
-- 作者:mositu -- 发布时间:2018/11/16 16:51:00 -- [求助]菜单事件SystemIdle问题 菜单事件
_SystemIdle
If CurrentTable Is Nothing Then Return Dim str1 As String
= "" Dim t As Table =
CurrentTable If t.Cols(t.ColSel).IsNumeric Then Str1 = Str1 & "累计:" &
t.Aggregate(AggregateEnum.Sum, t.TopRow, t.LeftCol, t.BottomRow, t.RightCol)
& " " Str1 = Str1 & "平均:" &
t.Aggregate(AggregateEnum.Average, t.TopRow, t.LeftCol, t.BottomRow,
t.RightCol) & " " Str1 = Str1 & "最大:" &
t.Aggregate(AggregateEnum.Max, t.TopRow, t.LeftCol, t.BottomRow, t.RightCol)
& " " Str1 = Str1 & "最小:" & t.Aggregate(AggregateEnum.Min, t.TopRow, t.LeftCol, t.BottomRow, t.RightCol) & " " else Str1 = Str1 & "计数:" & t.Aggregate(AggregateEnum.Count, t.TopRow, t.LeftCol, t.BottomRow, t.RightCol) & " " End If StatusBar.Message3 = str1 在附件中运行会出现错误,“索引超出范围。必须为非负值并小于集合大小。” 求解,先谢过。 [此贴子已经被作者于2018/11/16 16:52:03编辑过]
|
||||
-- 作者:mositu -- 发布时间:2018/11/16 16:53:00 -- 我上传了附件,怎么看不到 |
||||
-- 作者:mositu -- 发布时间:2018/11/16 16:54:00 --
再试一次,数据表就是官方的“多表查询”的例子
|
||||
-- 作者:有点甜 -- 发布时间:2018/11/16 17:27:00 -- 1、代码改成比如
Dim tabc As WinForm.TabControl If tabc.SelectedIndex<>0 Then
2、不建议你这样做,尽量用下面这种方法插入窗口
http://www.foxtable.com/bbs/dispbbs.asp?BoardID=2&ID=127551&skin=0
|
||||
-- 作者:mositu -- 发布时间:2018/11/16 18:33:00 -- 感谢!谢谢! |