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!

Report problem

Status
Not open for further replies.

Grube

Programmer
Feb 6, 2007
27
0
0
i want to have one header on my first page, and othe one on all other pages...so the first page should have fof ex. Headar1, and second, third and so on should have Header2.

i belive that i need to create two headers but how can i set which one will be displayed on which page???

Thanx
 
Grube,

I handle this by HIDE()/UNHIDE()
IOW, I have one page header, but I alter it at runtime via:
Report$?FirstPageHeaderGroup{prop:Hide}=TRUE
Report$?OtherPageHeaderGroup{prop:Hide}=FALSE

It makes for some challenges when working the report formatter, since I hand code, I just cut/paste one groups controls out of the report, work on the header, and then paste them back.

For someone in an APP, you could try moving the controls so that they don't overlap, and then manipulate the prop:YPOS as well as prop:Hide, you'll also likely have to alter the prop:YPOS on the header band as well.

HTH,
Mark Goldberg
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top