Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
可能我没说清楚,当一个表中某列值改变时:
DataColChanging事件触发:
If e.DataCol.Name = "驶入" Then
If e.DataRow("驶入") <> e.NewValue Then
不知如何写代码,来改变当前列的字体颜色。
End If
End If
或者DrawCell
If e.Col.Name = "驶入" then
If 原值<> 新值 Then '这段代码不知如何写?
e.Style = "b"
End If
End If
或者两事件结合起来实现,不知如何实现?有无好的办法实现?谢谢!!
可能我没说清楚,当一个表中某列值改变时:
DataColChanging事件触发:
If e.DataCol.Name = "驶入" Then
If e.DataRow("驶入") <> e.NewValue Then
不知如何写代码,来改变当前列的字体颜色。
End If
End If
或者DrawCell
If e.Col.Name = "驶入" then
If 原值<> 新值 Then '这段代码不知如何写?
e.Style = "b"
End If
End If
或者两事件结合起来实现,不知如何实现?有无好的办法实现?谢谢!!
系统包内不是有示例文件吗?