R
Russell Farr
I have a continuous form which displays a list of tasks.
Some of these tasks are marked urgent, and there is a
checkbox to illustrate this.
What I'd like to do, is highlight the urgent tasks by
marking them in red somehow, either by marking the
background for that particular record as red, or all the
text in each field as red. I'm trying to use the
following simple code:
If Me.Flag = True Then
Me.Task.ForeColor = 255
End If
This doesn't appear to work though.
Is it possible to isolate an individual record in a
continuous form and mark it differently?
Thanks
Russell
Some of these tasks are marked urgent, and there is a
checkbox to illustrate this.
What I'd like to do, is highlight the urgent tasks by
marking them in red somehow, either by marking the
background for that particular record as red, or all the
text in each field as red. I'm trying to use the
following simple code:
If Me.Flag = True Then
Me.Task.ForeColor = 255
End If
This doesn't appear to work though.
Is it possible to isolate an individual record in a
continuous form and mark it differently?
Thanks
Russell