以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  DrawCell  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=194090)

--  作者:1234567
--  发布时间:2024/11/8 13:00:00
--  DrawCell

.NET Framework 版本:4.0.30319.1
Foxtable 版本:2024.10.20.1
错误所在事件:表,任务单,DrawCell
详细错误信息:
Exception has been thrown by the target of an invocation.
Public member \'Style\' on type \'String\' not found.

 

如果【日期】不为空,【进度】按样式1

DrawCell

Select Case e.Col.name
    Case "日期"
        If e.Row.IsNull(e.Col.Name) = False Then\'且该列已经输入内容
            e.Row("进度").Style = "样式1"
        End If
End Select

 


--  作者:有点蓝
--  发布时间:2024/11/8 13:38:00
--  
Select Case e.Col.name
    Case "进度"
        If e.Row.IsNull(“日期”) = False Then\'且该列已经输入内容
            e.Style = "样式1"
        End If
End Select