Description

Force printer to advance one page. This statement is supported for backward compatibility only; newer programs should use the Print_ functions.

Syntax

Page

Remarks

Page causes the printer to print any specified Footing and Heading statements when moving to the new Page. Page will use the current output device set by the Printer statement. The global variable @PAGE keeps track of the current page.

See also

FootingHeadingPrinter

Example

For I = 1 To 100
       If Not(Mod(I,5)) Then Page
       Print I, Mod(I,5)
Next
/* The current output device moves to the top of the next page at every fifth line. */
  • No labels