以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  绘制代码问题  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=61040)

--  作者:seal51
--  发布时间:2014/12/5 18:34:00
--  绘制代码问题

If e.Col.name = "图纸PDF" Then
    If e.Col.IsNull(e.Col.Name)= True Then
        If e.Col.name = "产品ID"
            e.Style = "图纸"
        End If
    End If
End If

 

这个代码不对, 如何修改?


--  作者:seal51
--  发布时间:2014/12/5 18:36:00
--  
如果图纸PDF列为空,这产品ID列的字体为灰色
--  作者:czy
--  发布时间:2014/12/5 19:25:00
--  
If e.Col.name = "图纸PDF" Then
    If e.Col.IsNull(e.Col.Name)= True Then
        If e.Col.name = "产品ID"
            e.Style = "图纸"
        End If
    Else
        e.Style = "自定义样式"
    End If
End If

--  作者:seal51
--  发布时间:2014/12/5 22:15:00
--  
If e.Col.IsNull(e.Col.Name)= True Then 这句好像不对
--  作者:Bin
--  发布时间:2014/12/6 8:47:00
--  
If e.Row.IsNull(e.Col.Name)= True Then 

--  作者:seal51
--  发布时间:2016/1/16 9:56:00
--  

报价日期在30天内有效, 超过30天无效, 如何写代码

 

If e.Col.Name = "工作号" Then
    If e.Row.Isnull("工作号") = False Then
        If e.Row("报价日期")< Date.Today.AddDays(30) Then
            e.style = "有效"
        Else
            If e.Row("报价日期")< Date.Today.AddDays(-30) Then
                e.style = "无效"
            End If
        End If
    End If
End If

[此贴子已经被作者于2016/1/16 9:56:37编辑过]

--  作者:Hyphen
--  发布时间:2016/1/16 10:13:00
--  
If e.Col.Name = "工作号" Then
    If e.Row.Isnull("工作号") = False Then
        Dim d As Date = e.Row("报价日期")
        If d.AddDays(30) > Date.Today Then
            e.style = "有效"
        Else
            e.style = "无效"
        End If
    End If
End If