Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Dynamicforecolor in one column only
Message
From
06/01/2006 03:16:52
Rasheed Al Rasheed
Riyadh Armed Forces Hospital
Riyadh, Saudi Arabia
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Dynamicforecolor in one column only
Miscellaneous
Thread ID:
01083929
Message ID:
01083929
Views:
61
Hi All

I have a grid which I want to set the forecolor based on a value, the code is like this:

oGrd.SetAll("dynamicbackcolor", "", "Column")
oGrd.SetAll("dynamicforecolor", "", "Column")

oGrd.SetAll("dynamicforecolor", ;
"IIF(Credit > 0,RGB(0,121,0), RGB(198,0,0))", "Column")

The above works fine, but I want to change the color of column 6 according to the balance value, so i tried:

oGrd.Columns[6].SetAll("dynamicforecolor", ;
"IIF(balance > 0,RGB(0,0,255), RGB(0,0,0))", "Column")

also tried
oGrd.Column6.DynamicforeColor = IIF(balance > 0,"RGB(0,0,255)", "RGB(0,0,0)")
and again no luck.

Any help is much appreciated.

Thanks
Next
Reply
Map
View

Click here to load this message in the networking platform