Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim booLine As Boolean 'Define boolean variable availble throughout report
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If booLine Then
Detail.BackColor = 12632256 'Grey
Else
Detail.BackColor = 16777215 'White
End If
booLine = Not booLine 'Toggle booLine ready for next line
End Sub
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
'Michael Red. 2/13/2002. To 'Toggle the backolor, which
'Provides alternate line shading
Const XorToggle = 4144959
Me.Detail.BackColor = Me.Detail.BackColor Xor XorToggle
End Sub