irvine99
17th March 2014, 10:33
Hi,
how can i set the limit of rows per page in report?
Please help... :)
Thanks
bhushanchanda
17th March 2014, 11:55
Hi,
You can either set the report length to the length you want or in the report script you can check the line no using predef. vairable lattr.lineno.
i.e. you can do something like this:-
if lattr.lineno > 41 and lattr.lineno < 61 then
lattr.print = true
layout.again()
else
lattr.print = false
endif
irvine99
20th March 2014, 11:34
i see, thanks for the reply!! :D