Changing the font of a field in a form based on another form (1 Viewer)

miacino

Registered User.
Local time
Yesterday, 23:27
Joined
Jun 5, 2007
Messages
106
If my form field [urgency] is "time critical", AND my calculated Text53 field calculates >24, I would like to turn the font red.

How off am I? :rolleyes:


Private Sub Text53_AfterUpdate()
If Me.Urgency = "Time Critical (<24h)" And Me.Text53 > 24 Then
Me.Text53.ForeColor = vbRed
End If
End Sub
 

Uncle Gizmo

Nifty Access Guy
Staff member
Local time
Today, 07:27
Joined
Jul 9, 2003
Messages
16,274
Your thread was marked solved? I assume it is a mistake, and have unmarked it. If you wanted it Mark "Solved" then please reset it again..
 

Users who are viewing this thread

Top Bottom