Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共5 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:求助!SQL Table表列一为值1时字体颜色的设置?

1楼
baoxyang 发表于:2009/11/9 18:20:00
目的,判断为SQL Table(窗口中的表)某列值为“A”时字体颜色为白色,为“B”时字体颜色为红色。请问下代码应如何写?
2楼
mr725 发表于:2009/11/9 19:06:00

帮助中的DrawCell 不知道对窗口中的table有没有效果,反正我没有试过。  你可以试一试呀~

3楼
baoxyang 发表于:2009/11/9 21:35:00
在窗口AfterLoad事件中如下代码:

DataTables("车辆状态管理_Table1").Styles("空闲").ForeColor = Color.Green
DataTables("车辆状态管理_Table1").Styles("中转").ForeColor = Color.Blue
DataTables("车辆状态管理_Table1").Styles("配送").ForeColor = Color.plum
DataTables("车辆状态管理_Table1").Styles("维修").ForeColor = Color.Red
DataTables("车辆状态管理_Table1").Styles("预报空闲").ForeColor = Color.Orange
DataTables("车辆状态管理_Table1").Styles("已计划").ForeColor = Color.Aqua


DrawCell
事件中如下代码:
If e.Col.Name = "状态" Then
    If e.Row.IsNull("状态") = False
        If e.Row("状态") = "空闲" Then
            e.Style = "空闲"
        else If e.Row(e.Col.Name) = "中转" Then
            e.Style = "中转"
        else If e.Row(e.Col.Name) = "配送" Then
            e.Style = "配送"
        else If e.Row(e.Col.Name) = "维修" Then
            e.Style = "维修"
        else If e.Row(e.Col.Name) = "预报空闲" Then
            e.Style = "预报空闲"
        else If e.Row(e.Col.Name) = "已计划" Then
            e.Style = "已计划"
        End If
    End If
End If

请指点以上代码哪里有问题,谢谢!
4楼
czy 发表于:2009/11/10 0:18:00
好象只需这样就可以吧?

If e.Col.Name = "状态" Then
    If e.Row.IsNull("状态") = False
        e.Style = e.Row(e.Col.Name)
    End If
End If
5楼
baoxyang 发表于:2009/11/10 8:42:00

同样是没有反映(不出效果),请老大帮看看是怎回事?

共5 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .02930 s, 2 queries.