Then If you know what's on all the pages, it should be
simple to just print them in reverse order.
If you don't know what will be on page 100 when you are ready to print page 1, try printing to a file, with chr$(12)
in between pages, then close the file, then open it and
parse it by chr$(12) seek the last page then previous etc.
Or you could write each page to a separate file, then
access it that way
open "page1.fil" for output as #file1%
print #file1%,"hello"
print #file1%,chr$(12)
close #file1%
open "page2.fil" for output as #file1%
etc.
then open them and print to the printer in reverse order.