G
Guest
I can't seem to get this property to work. From what I understand, If you
use it within the group header section, when your group overflows onto the
next page of a report, acces triggers this property to true. I have a
"continued..." label I want to make visible when a group overflows and hides
when it doesn't but it won;t work and microsoft has a very generic
definition. Can any guru's out there please help?
Private Sub GroupHeader0_Format(Cancel As Integer, FormatCount As Integer)
If GroupHeader0.HasContinued = True Then
Me.lblContinue.Visible = True
Else
Me.lblContinue.Visible = False
End If
End Sub
use it within the group header section, when your group overflows onto the
next page of a report, acces triggers this property to true. I have a
"continued..." label I want to make visible when a group overflows and hides
when it doesn't but it won;t work and microsoft has a very generic
definition. Can any guru's out there please help?
Private Sub GroupHeader0_Format(Cancel As Integer, FormatCount As Integer)
If GroupHeader0.HasContinued = True Then
Me.lblContinue.Visible = True
Else
Me.lblContinue.Visible = False
End If
End Sub