Colored Rows in Continuous Form
In a continuous form, is there a way to 'highlight' (change backcolor) of either the entire row or even just one field of the form.
For example, if we have the following table:
CUSTID STATUS
328893 Current
229338 Closed
993002 Current
I would like the backcolor to change to yellow where status='Closed'. This is easy enough to do in a report;
if me.status = 'Closed' then
me.status.backcolor = vbYellow 'in the detail_print event.
end if
However, I cannot find the equivalent for a continuous form.
Thanks in advance.
Kevin Scott
|