Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - set noeject control form feed prior to printing reports http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 set noeject         Control form feed prior to printing reports
------------------------------------------------------------------------------
 Syntax
   set noeject on|off

 Arguments
   None.

 Description
   The set noeject command controls the status of the noeject flag.
   The default setting for the noeject flag is off.

   on suppresses sending a form feed to the printer prior to printing
   a report.

   off specifies that a form feed is sent to the printer prior to
   printing a report.

 Example
   #define EXAMPLE_DATABASE
   #include example.hdr

   proc Test_setnoeject
   open sTest
   report form sRepAcc to file "rep1.txt" // noeject flag is off (default)
   set noeject on
   report form sRepAcc to file "rep2.txt" // noeject flag is on
   close all                              // clean up
   erase "rep1.txt"
   erase "rep2.txt"
   endproc

   proc main
   Test_setnoeject()
   endproc

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson