e.Table.DataTable.AddUserStyle("黄色", Color.Yellow, Color.Black) If e.Table.DataTable.Find("第一列 = '" & e.Row("第一列") & "' and _Identify <> " & e.Row("_Identify")) IsNot Nothing Then e.Style = "黄色" End If
For Each dr As DataRow In DataTables("表A").Datarows If DataTables("表A").Find("第一列 = '" & dr("第一列") & "' and _Identify <> " & dr("_Identify")) IsNot Nothing Then dr("第二列") = "黄色" Else dr("第二列")= Nothing End If