Click to See Complete Forum and Search --> : printer object


Girish G
July 30th, 1999, 07:18 AM
I am using printer object to print a report. This report has 400 lines . My problem is that after printing 58 lines on the current page it should skip to the next page and then print the next 58 lines and so on , this is not happening.

Now this does not happen and all the matter is printer continuesly that is there is no gap.

how do i create the above report

shallowborne
August 22nd, 1999, 02:02 AM
Is it to late to answer this question? Can't you just use a do while combined with a for...next statement like:
Do while still data to print
for count = 0 to 58
print statements
next count
printer.newpage
Loop