Formatting reports - shade alternate lines (1 Viewer)

B

billburton57

Guest
I'm trying to figure out how to shade alternate detail lines in a report. Any ideas?
 

Fornatian

Dim Person
Local time
Today, 00:20
Joined
Sep 1, 2000
Messages
1,396
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
Const Grey = 16777215
Const White = 12632256
Me.Detail.BackColor = IIf(Me.Detail.BackColor = White, Grey, White)
End Sub
 

Users who are viewing this thread

Top Bottom