B
Barry F
I am trying to make a detail report easier to read by
alternating the backcolor. Here is what I have:
Private Sub Detail_Format(Cancel As Integer, FormatCount
As Integer)
Dim cnt As Integer
cnt = 1
If Me.FormatCount = 1 Then
cnt = cnt + 1
If cnt Mod 2 = 0 Then
Me.Section(acDetail).BackColor = 12632256
Else
Me.Section(acDetail).BackColor = 16777215
End If
End If
End Sub
I know I am missing something as it prints with just the
one backcolor.
Any help is appreciated.
Barry F
alternating the backcolor. Here is what I have:
Private Sub Detail_Format(Cancel As Integer, FormatCount
As Integer)
Dim cnt As Integer
cnt = 1
If Me.FormatCount = 1 Then
cnt = cnt + 1
If cnt Mod 2 = 0 Then
Me.Section(acDetail).BackColor = 12632256
Else
Me.Section(acDetail).BackColor = 16777215
End If
End If
End Sub
I know I am missing something as it prints with just the
one backcolor.
Any help is appreciated.
Barry F