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