-
3
- #1
LonnieJohnson
Programmer
This will give a green bar effect on a report. Every other line green. You may want to play around with the numeric color expressions if you don't like the loud green you get from vbGreen. Just a tip...
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.Detail.BackColor = vbWhite Then
Me.Detail.BackColor = vbGreen
Else
Me.Detail.BackColor = vbWhite
End If
End Sub
[/blue]
ProDev, MS Access Applications
Visit me at ==> Contact me at ==>lonniejohnson@prodev.us
May God bless you beyond your imagination!!!
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.Detail.BackColor = vbWhite Then
Me.Detail.BackColor = vbGreen
Else
Me.Detail.BackColor = vbWhite
End If
End Sub
[/blue]
ProDev, MS Access Applications
Visit me at ==> Contact me at ==>lonniejohnson@prodev.us
May God bless you beyond your imagination!!!