How to create a report with deffrent layout
HELLO,
I ENCOUNTER SUCH A PROBLEM, THAT IS I WILL DISPLAY 5 LINES AT FIRST PAGE, AND 7 LINES FOR OTHER PAGES, HOW CAN I RESOLVE IT?
MY FR'S VERSION: V2.5X
REGARDS
I ENCOUNTER SUCH A PROBLEM, THAT IS I WILL DISPLAY 5 LINES AT FIRST PAGE, AND 7 LINES FOR OTHER PAGES, HOW CAN I RESOLVE IT?
MY FR'S VERSION: V2.5X
REGARDS
Comments
what band are you working with master ,detail?
what is datasource for band, frdbdataset, fruserdataset, virtual recNo?
Just two datasources: Master and Detail.
Bands:
Report Title
Detail Header
Detail Band(Detail DataSource)(5 line for 1st Page, 7 Lines For Others)
Detail Summary
Page Footer
Regards
Michael
control the visibility of the detail band based on page# and line# in the detailbands obp event
if [page#] < 2 then
visible := [[line#] < 6] else visible := true;