sportsguy
Finance wiz, Access hack
- Local time
- Today, 15:31
- Joined
- Dec 28, 2004
- Messages
- 363
What is the proper syntax to set the backcolor to #FAF3E8??
thanks
sportsguy
Code:
Private Sub GroupFooter7_Format(Cancel As Integer, FormatCount As Integer)
If Me.ftrQuota = "Bookings" Then
Me.Box30.BackColor = vbWhite
Else
Me.Box30.BackColor = vbYellow
Me.Box30.BackColor = "#FAF3E8"
End If
End Sub
thanks
sportsguy