Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Setting Grid dynamicforecolor
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00095887
Message ID:
00095894
Views:
24
>I have a grid populated with a cursor, and based on the value of the column control I want to change the forecolor of the column. For instance, if the value in row1 column1 is a negative integer, I want to show it in red and if row2 column1 is positive, show it black. I've played around with the dynamicforecolor, but no success. I end up changing all rows red or black regardless of the values. Is what I'm trying to do posible?
>
>Thanks!
>
>John :)

First Posting is garbled sorry:
At Init or Activate Event of the Form, put this:

per Column:

select mytable
Thisform.Grid1.Column1.DynamicForecolor="IIF(mytable.val1<0,RGB(255,0,0),RGB(0,0,255))"

per Row:

Select mytable
Thisform.Grid1.Setall("DynamicForecolor","IIF(mytable.val1<0,RGB(255,0,0),RGB(0,0,255))","column")
JESS S. BANAGA
Project Leader - SDD division
...shifting from VFP to C#.Net

CHARISMA simply means: "Be more concerned about making others feel good about themselves than you are in making them feel good about you."
Previous
Reply
Map
View

Click here to load this message in the networking platform