Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Label on Report

Status
Not open for further replies.

jete96

Technical User
May 23, 2006
1
US
I have a label, for a memo box,that is on the bottom of page one, and the memo box continues onto page two with no label decribing the box. I have the report set up to Can Grow. Is there a way to have the label appear on page two at the top, as well as on the bottom of page one?
 
Perhaps something like:
Code:
Private Sub Detail_Format(Cancel As Integer, _
        FormatCount As Integer)
'A4=210x297
'11906 twips approx

intFuzz = 140
If Me.Detail.WillContinue Then
    Me.CurrentX = 1
    Me.CurrentY = 11906 - intFuzz
    Me.Print "....continued from previous page"
End If
End Sub

What is good is due in large part to:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top