home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource1 / chint / useful11.hnt < prev    next >
Text File  |  1992-03-30  |  898b  |  25 lines

  1. Useful hints for use in the Report Generator.
  2.  
  3. 1)  To force a page break at a specific point during a report select
  4.     Fields/Add/Statement and in the statement entry box enter :--
  5.  
  6.          lineno = pagelength
  7.  
  8.     NOTE : This statement could also be proceeded by a conditional statement,
  9.            ie:--  if (lineno > ival(FORMLENGTH)) lineno = pagelength
  10.            where FORMLENGTH would be a report filter field.
  11.  
  12.  
  13. 2)  To suppress a particular line of a report move the cursor to the end of
  14.     that line then select Fields/Add/Statement and in the statement entry box
  15.     enter :--
  16.  
  17.          lineno--
  18.  
  19.     NOTE : Make sure that this is the LAST field marked on the line.
  20.  
  21.     NOTE : This statement could also be proceeded by a conditional statement,
  22.            ie:--  if (PRINTDETAIL[0] == 'Y') lineno--
  23.            where PRINTDETAIL would be a report filter field.
  24.  
  25.