J
JohnLute
I use the following:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.Section(0).BackColor = vbWhite Then
Me.Section(0).BackColor = 13948116 'gray
Else
Me.Section(0).BackColor = vbWhite
End If
End Sub
How can this be modified to back color every line?
Thanks!
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.Section(0).BackColor = vbWhite Then
Me.Section(0).BackColor = 13948116 'gray
Else
Me.Section(0).BackColor = vbWhite
End If
End Sub
How can this be modified to back color every line?
Thanks!