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

Rave Reports

Status
Not open for further replies.

morfasie

IS-IT--Management
Mar 28, 2004
85
ZA
Hi

I created a report with code and the tab functions in rave report and connected with a DB. I return the surnames of people but when I review the report, it only generates the first page? Why is that? Is there a setting to set?

Thanks
 

At some point you're going to have to issue the .NewPage method.

You can use the .YPos property to see where you are on the page and do a NewPage when YPos gets too large.

 
What will the y pos be at the end of the page? and what is the call for the newpage function??

thanks
 

You should be able to find your answers in the help file, and/or by setting break points to watch the values of things like the .YPos property.

.YPos is measured in inches, so the end of the page might be when .YPos is greater than 10. It depends on your page size and other requirements.

.NewPage is just another method of TBaseReport and is issued the same way .PrintTab is. (You said you are using "the tab functions" which I took to mean .SetTab and .PrintTab)

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top