以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  临时表的样式问题  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=194788)

--  作者:lgz518
--  发布时间:2025/1/14 15:30:00
--  临时表的样式问题
If e.Col.Name Like "*_计划数" Then
    If e.Row(e.Col.Name) = 0 Then
        e.Style = "w" \'白色
    ElseIf e.Row(e.Col.Name) > 1 Then
        e.Style = "f" \'如蓝色
    ElseIf e.Row(e.Col.Name) >= e.Row("*_完成数") Then
        e.Style = "g" \'如绿色
    ElseIf e.Row(e.Col.Name) < e.Row("*_完成数") Then
        e.Style = "y" \'如黄色      
    End If 
End If

\'执行后, 没报错,但没有颜色。


If e.Row("*_计划数") = 0 Then
    e.Style = "w" \'白色
ElseIf e.Row("*_计划数") > 1 Then
    e.Style = "f" \'如蓝色
ElseIf e.Row("*_计划数") >= e.Row("*_完成数") Then
    e.Style = "g" \'如绿色
ElseIf e.Row("*_计划数") < e.Row("*_完成数") Then
    e.Style = "y" \'如黄色      
End If

\'执行后, 报错列“ * _计划数”不属于表 窗口2_Table2。


上面代码执行,都无没实现,临时表的多表头的单元的颜色标识 ,如何实现临时表的多表头单元格颜色标识?


图片点击可在新窗口打开查看此主题相关图片如下:222.jpg
图片点击可在新窗口打开查看


--  作者:有点蓝
--  发布时间:2025/1/14 15:44:00
--  
看表格都是什么列名和标题

for each dc as datacol in datatables("窗口2_Table2").datacols
msgbox(dc.name & ",," & dc.caption)
next

--  作者:lgz518
--  发布时间:2025/1/14 16:05:00
--  

图片点击可在新窗口打开查看此主题相关图片如下:333.jpg
图片点击可在新窗口打开查看

--  作者:有点蓝
--  发布时间:2025/1/14 16:08:00
--  
If e.Col.Name Like "计划数_*" Then
    If e.Row(e.Col.Name) = 0 Then
        e.Style = "w" \'白色
    ElseIf e.Row(e.Col.Name) > 1 Then
        e.Style = "f" \'如蓝色
    ElseIf e.Row(e.Col.Name) >= e.Row(e.Col.Name.replace("计划数","完成数")) Then
        e.Style = "g" \'如绿色
    ElseIf e.Row(e.Col.Name) < e.Row(e.Col.Name.replace("计划数","完成数"))  Then
        e.Style = "y" \'如黄色      
    End If 
End If