home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / s / super25n.zip / EXAMPLES.DOC < prev    next >
Text File  |  1993-01-05  |  4KB  |  90 lines

  1.  
  2.                     ┌───────────────────────────────┐
  3.                     │         SuperLib 2.50         │
  4.                     │    For Clipper S87 and 5.01   │
  5.                     │    -------------------------  │
  6.                     │       copyright 1990          │
  7.                     │      Garry A Prefontaine      │
  8.                     └───────────────────────────────┘
  9.  
  10.                       Example Code and Data Files
  11.                       ---------------------------
  12.  
  13. To retrieve the example files, extract the files from EXAMPLES.ZIP,
  14. preferably into a seperate directory so as not to confuse them with the
  15. regular files.
  16.  
  17.  
  18. 1. Sample Code
  19.  
  20. sfappend.prg                Demonstrate APPENDIT() - conditional append
  21. sfbuild.prg                 Demonstrate BUILDEX() - expression builder
  22. sfcopy.prg                  Demonstrate COPYITOUT() - conditional copy
  23. sfdates.prg                 Demonstrate Date related functions
  24. sfeditdb.prg                Demonstrate EDITDB() - table edit (browse)
  25. sfdups.prg                  Demonstrate DUPLOOK() - duplicate checking
  26. sffreq.prg                  Demonstrate FREQANAL() - frequency analysis
  27. sfgened.prg                 Demonstrate GENED() - generic EDIT
  28. sfindex.prg                 Demonstrate BLDNDX() - index builder
  29. sflabel.prg                 Demonstrate CLABEL() - mailing labels
  30. sfletter.prg                Demonstrate FORMLETR(), FASTFORM() -
  31.                             form letters
  32. sflists.prg                 Demonstrate LISTER() - list builder
  33. sflookup.prg                Demonstrate SCROLLER() SCMOD() SMALLS()
  34.                             - lookups
  35. sfmenu.prg                  Demonstrate PULLDN() - pulldown menus
  36. sfmodify.prg                Demonstrate MODIFY() - modify structure
  37. sfpops.prg                  Demonstrate Popups (calendar, calulator, boxes..)
  38. sfquery.prg                 Demonstrate QUERY() - query builder
  39. sfreport.prg                Demonstrate REPORTER() - report writer
  40. sfrplace.prg                Demonstrate GLOBREP() - global replace
  41. sfscreen.prg                Demonstrate Various screen ehnancements
  42. sfstring.prg                Demonstrate String manipulation functions
  43. sftext.prg                  Demonstrate FILEREAD() - text file browser
  44. sftime.prg                  Demonstrate TIMEPER() - time analysis
  45. sftodo.prg                  Demonstrate TODOLIST() - simple to do list
  46. sfview.prg                  Demonstrate VIEWPORT() - generic data entry
  47.  
  48.  
  49.  
  50.  
  51. 2. Sample Data
  52.  
  53. help.*                      Demonstrate online help (accessed from
  54.                             SF*.PRG)
  55. sfreport.*                  Demonstrate REPORTER() (accessed from
  56.                             SFREPORT.PRG
  57. sfsample.*                  Sample Names type DBF file
  58. todo?.*                     Sample TODOLIST() dbf and indexes
  59. form.*                      Sample form letter using sfsample.dbf data
  60. scroller.dbf                Lookup definitions for SCROLLER()
  61. states.dbf                  Lookup table used by scroller in SFLOOKUP.PRG
  62. products.dbf                Lookup table used by scroller in SFLOOKUP.PRG
  63. colors.mem                  Sample colors mem file
  64.  
  65. 3. Creation
  66.  
  67. To create an executable for any of the given .PRGs, where <prgfile>
  68. refers to the prg and <objfile> refers to the compiled object file:
  69. (add paths to Clipper and Extend and Super libraries as needed)
  70.  
  71.   A. COMPILE
  72.  
  73.     Clipper <prgfile>              (note: no switches, S87 or 5.01)
  74.  
  75.   B. LINK
  76.  
  77.     1   plink86
  78.         plink86 file <objfile> search clipper,super,extend
  79.              or
  80.         plink86 file <objfile> search clipper,super5,extend
  81.  
  82.     2   blinker
  83.         blinker fi <objfile> lib super
  84.              or
  85.         blinker fi <objfile> lib super5
  86.         (or use a .LNK file)
  87.  
  88.     3   rtlink (clipper 5.0 version)
  89.         rtlink fi <objfile> lib super5
  90.