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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

First page footer different from other pages

Status
Not open for further replies.
Apr 27, 2006
7
0
0
US
Hi

I need to create a report with different footer on first page. How do i ?

Thanks in advance

Regds,
Sridhar
 
How different are the two footers? If you can use the same text control and want to change wording you can use (in the text control):

------------------------
Sub Finish( )
Super::Finish( )
Static p1 As Integer

IF p1 = 0 THEN
me.DataValue = "Page 1"
p1 = 1 ' Change flag
ELSE
me.DataValue = "Page 2"
END IF
End Sub
------------------------

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top