M
Michelle
I have a report that changes the background color of a group. Now what the
user would like is to display a line at the bottom.
Here is my code to change the back color also my line is at the bootom of
the Detail seciton and is called BottomLine.
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If FormatCount = 1 Then
lngColor = IIf(Me.txtGroupCount Mod 2 = 0, vbWhite, 12632256)
If Me.Section(acDetail).BackColor <> lngColor Then
Me.Section(acDetail).BackColor = lngColor
End If
End If
End Sub
What I would the user would like to see is something like this....
AB123 ZF345 Dan Smith Replacement 2000
Contract Ext
450
user would like is to display a line at the bottom.
Here is my code to change the back color also my line is at the bootom of
the Detail seciton and is called BottomLine.
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If FormatCount = 1 Then
lngColor = IIf(Me.txtGroupCount Mod 2 = 0, vbWhite, 12632256)
If Me.Section(acDetail).BackColor <> lngColor Then
Me.Section(acDetail).BackColor = lngColor
End If
End If
End Sub
What I would the user would like to see is something like this....
AB123 ZF345 Dan Smith Replacement 2000
Contract Ext
450