help! can I change the color of some row?

directorfw

Member
Licensed User
Longtime User
Hi...
I saw the EnhancedTable from Erel....

Sub SetAlternateRowsColor (TableName,Color)
If cPPC Then Return 'devices do not support this method
obj.FromControl(TableName)
o.CreateNew("System.Drawing.Color" & o.System_Drawing)
o.Value = o.RunMethod2("FromArgb",Color,"System.Int32")
obj.Value = obj.GetProperty("TableStyles")
obj.Value = obj.GetProperty2("Item",0)
obj.SetProperty2("AlternatingBackColor", o.Value)
End Sub

but devices do not support this method...
theres is a way to change the color of some row or cell? :sign0085:
and use it with the decive...
 
Top