Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Colors in my grid
Message
From
26/06/2000 03:24:39
 
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00383640
Message ID:
00384519
Views:
64
Hi Nadya.

>> Thanks a lot for your reply. The colors n my grid depend on thisform.EditMode and field value. I put this code in Grid.refresh()
if thisform.editmode
set dynamicbackcolor to some value
else
set dynamicbackcolor to other value
endif <<

Something like this in the gri'd init (actually, I generally put stuff like this into the custom SetGrid method of my grid class. SetGrid is always called from the grid's init) should do the trick:

This.SetAll( 'DynamicBackColor', ;
'IIF( Thisform.EditMode, RGB( 0,255,255 ), RGB( 255, 255, 255 ) )', 'COLUMN' )

This assumes that when the editmode changes, you issue a thisform.refresh()

Marcia
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform