David Higgs
Programmer
My Grid uses the following code to set the Grid Row Backcolor to alternate colors.
I would like "selected Cells" to be a different Backcolor for certain conditions. If I use the following Code and the conditions are met, the Backcolor changes. However the remainder of the Cells in the Column lose their Alternate Backcolors.
Is there anyway to restore alternate colors to the others Cells?
Regards,
David.
Recreational user of VFP.
Code:
this.SetAll("DynamicBackColor", "MyBackColor(alt_col)", "Column")
this.SetAll("DynamicForeColor", "MyForeColor(userstatus)", "Column")
I would like "selected Cells" to be a different Backcolor for certain conditions. If I use the following Code and the conditions are met, the Backcolor changes. However the remainder of the Cells in the Column lose their Alternate Backcolors.
Code:
This.area.Dynamicbackcolor="IIF(AREA ='TL02',RGB(255,0,0),RGB(255,255,255))"
Is there anyway to restore alternate colors to the others Cells?
Regards,
David.
Recreational user of VFP.