以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 子表如何根据主表审核情况DrawCell (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=174600) |
-- 作者:dokings -- 发布时间:2022/1/22 14:07:00 -- 子表如何根据主表审核情况DrawCell 如题! 主表审核后,子表对应行DrawCell 主表原来的代码: If e.Row("审核")= True Then e.Style = "lockstyle" End If 这样主表审核后可以DRAWCELL,对应的子表要相同显示怎么弄?
|
-- 作者:有点蓝 -- 发布时间:2022/1/22 14:58:00 -- If datatables("父表").find("编号=‘" & e.Row("编号") & "’ and 审核=true") isnot nothing Then e.Style = "lockstyle" End If
|
-- 作者:dokings -- 发布时间:2022/1/22 15:38:00 -- 这个是放子表的DRAWCELL里吗? |
-- 作者:有点蓝 -- 发布时间:2022/1/22 16:00:00 -- 当然了 |