以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 加载表有卡顿,能否帮忙优化一下呢 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=154035) |
-- 作者:shyilin4 -- 发布时间:2020/9/1 20:48:00 -- 加载表有卡顿,能否帮忙优化一下呢 Dim st1() As String =Args(0) \'表名称 Dim Filter() As String =Args(1) \'条件列名称 For c As Integer =0 To st1.Length -1 If DataTables(st1(c)).Find(Filter(c)) IsNot Nothing Then DataTables(st1(c)).RemoveFor(Filter(c)) End If DataTables(st1(c)).AppendLoad(Filter(c)) Tables(st1(c)).Filter =Filter(c) Next 在加载表的时候会有一两秒的卡顿,如果表的数量多了的话更卡 有什么其他方法吗
|
-- 作者:有点蓝 -- 发布时间:2020/9/1 21:42:00 -- 这个基本没有办法。做个加载提示窗口吧:http://www.foxtable.com/bbs/dispbbs.asp?BoardID=2&ID=152101&replyID=&skin=1 |