以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 定时切换选定的当前行 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=142940) |
-- 作者:季朝龙 -- 发布时间:2019/11/9 14:43:00 -- 定时切换选定的当前行 表格只加载最新的10条数据 我想实现每隔5S所选定的当前行切换为下一行,且如果当前行已经是第10行就切换到第1行, 以此来实现每行所对应的图表的定时切换。
|
-- 作者:有点蓝 -- 发布时间:2019/11/9 14:48:00 -- 到计划管理处理:http://www.foxtable.com/webhelp/topics/0657.htm dim t as table = tables("表A") if t.position = t.rows.count - 1 then t.position = 0 else t.position = t.position + end if
|
-- 作者:季朝龙 -- 发布时间:2019/11/9 15:03:00 -- 懂了,非常感谢老师的帮助! 懂了,非常感谢老师的帮助! |