home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a031 / template.exe / DD_REPT.COD < prev    next >
Encoding:
Text File  |  1992-03-10  |  1.3 KB  |  36 lines

  1. //
  2. // Module Name: DD_REPT.COD - current (selector name): Menu_Act = 4
  3. // Selectors used : FRM_Dest, FRM_File, FRM_Headng, FRM_Plain, FRM_Eject, FRM_Summry
  4. //            : Flter_Cond, Scope, For_Expr, While_Exp
  5. // Description: DOC. include file for REPORT option.
  6. // Syntax     : REPORT FORM <report form file>/? [<scope>]
  7. //                  [FOR <condition>] [WHILE <condition>]
  8. //                  [PLAIN] [SUMMARY] [NOEJECT] [TO PRINT]
  9. //                  [HEADING <expC>]
  10. //                  [TO FILE <file>]
  11. //
  12. Run Report Form {FRM_File}.frm
  13. {if Scope || For_Expr || While_Exp || FRM_Headng || FRM_Summry || FRM_Eject ||
  14.   FRM_Plain then }
  15. {endofpage();}
  16. Command Options:
  17. { if Scope} SCOPE {upper(Scope)}{endif}\
  18. { if For_Expr} FOR {For_Expr}{endif}\
  19. { if While_Exp} WHILE {While_Exp}{endif}\
  20. {if !FRM_Plain} PLAIN {endif}
  21. {endofpage();}
  22. {if FRM_Summry} SUMMARY {endif}\
  23. {if FRM_Eject} NOEJECT {endif}\
  24. { if FRM_Headng} HEADING "{FRM_Headng}"{ endif}
  25. {endif}
  26. {endofpage();}
  27. Print Mode: \
  28. {if not FRM_Dest}Send to Default Printer{endif}\
  29. {if FRM_Dest == 1}Send to File {FRM_File}.txt{endif}\
  30. {if FRM_Dest == 2}Screen{endif}\
  31. {if FRM_Dest == 3}Ask User at Runtime{endif}{if Flter_Cond} Filter: {Flter_Cond}
  32. {endif}
  33. {endofpage();}
  34.  
  35. // EOP DD_REPT.COD
  36.