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 summary control detail line printing in reports http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 set summary         Control detail line printing in reports
------------------------------------------------------------------------------
 Syntax
   set summary on|off

 Arguments
   None.

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

   on specifies that only totals and subtotals are printed for reports.

   off specifies that detail lines are printed for reports.

 Example
   #define EXAMPLE_DATABASE
   #include example.hdr

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

   proc main
   Test_setsummary()
   endproc

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