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!

how to write a piece of code to show the page number in a report

Status
Not open for further replies.

JSeidel

Technical User
Jan 10, 2003
77
0
0
US
This is what I have:

whilePrintingRecords;
NumberVar PageNum := PageNum + 1;
StoreNumberVar("PageN", PageNum)

it doesn't seem to work - what am I missing?
 
Have you posted this to the right forum? This is VB5/6 forum
________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first

'People who live in windowed environments shouldn't cast pointers.'
 
try this code control source of a textbox on the report
="Page " & [Page] & " of " & [Pages]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top