ailisee
23rd August 2011, 12:50
Regards the report designing problem:
How to do if I want to always display the "After.Field" layout at the bottom of the page.
thanks.
Pieter van de L
23rd August 2011, 16:54
Use the function skip.to
skip.to( expr ) Skip to the line number indicated by expr. Intervening lines are left blank. If the specified line number is less than the current page number, a new page is started.
to.page( expr ) Start a new page with number expr.
Regard,
Pieter
ailisee
24th August 2011, 05:39
Thanks a lot! I get the idea.:)
ailisee
8th September 2011, 12:33
Hi,
is my script as below correct?
if lattr.lineno > (spool.pg.length - 8) then
to.page(spool.pg.length - 8)
else
skip.to(spool.pg.length - 8)
endif
my report displayed incorrectly at the page 2 whenever the lattr.lineno > (spool.pg.length - 8).
please help.
mark_h
8th September 2011, 14:51
According to help the to.page starts a new page, maybe try a skip.to after the new page is started. Without seeing the whole script it is hard to say.