I have hand coded grid on a form.
I have a textbox control in Column 2
I want to use both alternate rows in grey and a particular column in another constant colour incolumn 2.
This ignores the column color.
If I use .backcolor = RGB(0,255,255) in the column's properties it only shows in empty rows.
Can I have both?
Regards
Bryan
I have a textbox control in Column 2
I want to use both alternate rows in grey and a particular column in another constant colour incolumn 2.
Code:
THIS.SETALL("dynamicbackcolor","IIF(MOD(recno(), 2) = 0, RGB(192,192,192), RGB(255,255,255))")
THIS.Column2.dynamicbackcolor = RGB(0,255,255)
This ignores the column color.
If I use .backcolor = RGB(0,255,255) in the column's properties it only shows in empty rows.
Can I have both?
Regards
Bryan