Filling blank space on last page
Hi all.
I am working on a new report that prints an operations' log.
The report page contains one master band with variable height (set by code) depending on the type of operation. This means in a full page there can be either 5 or 6 rows of data.
When prepared, there can't be any empty space on the last page (to avoid someone writing on it after it's validated) so I would like to fill the blank space with lines full of dots or *. See attached document for example
How can I accomplish this?
Thank you!
I am working on a new report that prints an operations' log.
The report page contains one master band with variable height (set by code) depending on the type of operation. This means in a full page there can be either 5 or 6 rows of data.
When prepared, there can't be any empty space on the last page (to avoid someone writing on it after it's validated) so I would like to fill the blank space with lines full of dots or *. See attached document for example
How can I accomplish this?
Thank you!
Comments
use the engine.showbandmethod
write codee to check the engines freespace and repeat the # of times the band shows
note you will probably need a header and fotter band to have an appropriate place to write the code.
Awesome, thanks!