Break page
Hi,
I use a master data band on a simple report. I want my report go to the next page before to print this band.
I define Force New Page with popupmenu for the band but it doesn't work.
I try to define FormNewPage in object inspector but it doesn't work.
How to do this please ?
J-L
I use a master data band on a simple report. I want my report go to the next page before to print this band.
I define Force New Page with popupmenu for the band but it doesn't work.
I try to define FormNewPage in object inspector but it doesn't work.
How to do this please ?
J-L
Comments
IIRC this happens on first page only as the basic assumption is the first mdband is on the first page so form newpage doesn't do any thing until the next record.
write code in obp event of master data band
if [Page#] = 1 then newpage; should so;ve the problem.
regards