以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]单元格绘制问题 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=160081) |
-- 作者:lds -- 发布时间:2021/1/19 18:03:00 -- [求助]单元格绘制问题 If e.Col.name = "第六列" Then \' If e.Text="是" OrElse e.Text="否" Then e.Style = "红蓝" End If End If 这样是可以正常显示的,但我想要的结果是输入不是是否的填充颜色提示. If e.Col.name = "第六列" Then \' If e.Text<>"是" OrElse e.Text<>"否" Then \'这句该怎么改写? e.Style = "红蓝" End If End If 这样写就全变色了. |
-- 作者:rjh4078 -- 发布时间:2021/1/19 19:02:00 -- orelse 改成 andalso |
-- 作者:lds -- 发布时间:2021/1/20 9:01:00 -- 收到,谢谢! |