以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 工作流 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=112722) |
|
-- 作者:cglsg5076 -- 发布时间:2018/1/1 21:32:00 -- 工作流 请问老师,是否可以并行执行工作流。 |
|
-- 作者:有点甜 -- 发布时间:2018/1/1 22:59:00 -- 比较麻烦,看看帮助文档
http://www.foxtable.com/webhelp/scr/2266.htm
|
|
-- 作者:cglsg5076 -- 发布时间:2018/1/2 22:19:00 -- 请教老师,我需要实现点击窗体里表的某一行就链接到另外一个窗体,打开这个窗体(在网页软件里经常能够看见),请问如何写代码? |
|
-- 作者:有点蓝 -- 发布时间:2018/1/2 22:30:00 -- 表click事件 Forms("窗口2").open
|
|
-- 作者:cglsg5076 -- 发布时间:2018/1/2 23:40:00 -- 请教老师,表事件中的MouseEnterCell,如何写代码实现鼠标进入某行,该行就高亮显示?谢谢 |
|
-- 作者:cglsg5076 -- 发布时间:2018/1/3 8:40:00 --
|
|
-- 作者:有点甜 -- 发布时间:2018/1/3 9:07:00 -- MouseEnterCell事件
vars("x") = e.Row.index
DrawCell事件
If e.Row.Index = vars("x") Then |
|
-- 作者:cglsg5076 -- 发布时间:2018/1/3 22:41:00 -- 老师好,请问下面代码在表事件: afterselchange ,提示给定给定关键字不在字典中,请问如何改代码? Dim it As Winform.StripItem = e.Form.Strips("StatusBar").Items("Stat") Dim t As Table = e.Table it.Text = "" t.Cols(t.ColSel).IsNumeric \'如果当前列是数值列 it.Text = "Sum:" & t.Aggregate(AggregateEnum.Sum,t.TopRow,t.ColSel,t.BottomRow,t.ColSel)
|
|
-- 作者:有点甜 -- 发布时间:2018/1/3 23:25:00 -- 试试
If Forms("窗口1").Opened Then Dim it As Winform.StripItem = Forms("窗口1").Strips("StatusBar").Items("Stat") \'其余代码 End If |
|
-- 作者:cglsg5076 -- 发布时间:2018/1/3 23:38:00 -- ok,谢谢指导。 |