D
Donna
I have a form where I want the background color to change based on if it's
the most recent record; If a person has 3 contracts, 200601, 200701,
200801, I want 200801 to be one color and the others to be another color.
How would I code the on current event to show this.
Right now I am thinking something like:
Dim lngYellow As Long, lngBlue As Long
lngBlue = RGB(161, 205, 253)
lngYellow = RGB(219, 156, 254)
If Me.StartYr.Value = ?????? Then
Me.Detail.BackColor = lngYellow
Else
Me.Detail.BackColor = lngBlue
End If
Any suggestions? Thanks for your help.
the most recent record; If a person has 3 contracts, 200601, 200701,
200801, I want 200801 to be one color and the others to be another color.
How would I code the on current event to show this.
Right now I am thinking something like:
Dim lngYellow As Long, lngBlue As Long
lngBlue = RGB(161, 205, 253)
lngYellow = RGB(219, 156, 254)
If Me.StartYr.Value = ?????? Then
Me.Detail.BackColor = lngYellow
Else
Me.Detail.BackColor = lngBlue
End If
Any suggestions? Thanks for your help.