home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / news / 769 / examples.doc < prev    next >
Text File  |  1994-04-26  |  2KB  |  81 lines

  1.   Examples
  2.   --------
  3.  
  4.   The example files are installed in the \SAMPLES subdirectory when
  5.   you install SuperLib 3.5 shareware.
  6.  
  7.   The sample files are broken down into 1 .PRG file per
  8.   category. Some also have sample data files.
  9.  
  10.   PRG Files
  11.   ---------
  12.   S3SCREEN.PRG      Fancy screen handling
  13.   S3META.PRG        Metafunctions
  14.   S3META2.PRG       Metafunctions - using new BUNGEE() menu
  15.   S3POPUP.PRG       Popups
  16.   S3MENU.PRG        Menus (including PULLDN(), BUNGEE() )
  17.   S3GET.PRG         Get system enhancements
  18.   S3MOUSE.PRG       Mouse and event function usage
  19.   S3LOOKUP.PRG      Lookup functions
  20.   S3LASER.PRG       LaserJet functions
  21.   S3HELP.PRG        Online help
  22.   S3PROG.PRG        Progress bars
  23.   S3FILE.PRG        File and directory functions
  24.   S3COLORS.PRG      SuperLib Color set handling
  25.   S3BROWSE.PRG      Browses (tbrowse)
  26.   S3OLD.PRG         OLD() on Line Doc sample
  27.  
  28.   Data
  29.   ----
  30.   S3SAMPLE.DBF      Sample Names type DBF file
  31.   S3SAMPLE.DBT      Sample Names type DBT file
  32.  
  33.   S3SAMPLE.SDF      Sample Names type SDF file for
  34.                     S3BROWSE.PRG
  35.  
  36.   S3SAMPLE.ASC      Sample Names type ASCII delim file
  37.                     for S3BROWSE.PRG
  38.  
  39.   S3HELP.DBF        Online help samples DBF
  40.   S3HELP.DBT        Online help samples DBT
  41.   S3HELP.NTX        Online help samples NTX
  42.  
  43.   S3STATES.DBF      Lookup table used in S3LOOKUP.PRG
  44.   S3PROD.DBF        Lookup table used in S3LOOKUP.PRG
  45.  
  46.   S3COLORS.DBF      Color set file
  47.  
  48.  
  49.  
  50.   Creating .EXE files
  51.   -------------------
  52.  
  53.   To create an executable for any of the given .PRGs, where
  54.   <prgfile> refers to the prg and <objfile> refers to the compiled
  55.   object file: (add paths to Clipper and Extend and SUPERxx
  56.   libraries as needed)
  57.  
  58.  
  59.  
  60.   A. COMPILE      NOTE: the -n switch is very important!
  61.                   ======================================
  62.  
  63.     Clipper <prgfile> -n -w
  64.  
  65.   B. LINK
  66.  
  67.     1   blinker
  68.  
  69.         blinker fi <objfile> alloc sup35sw
  70.         (you might wish to use a link file for larger apps)
  71.  
  72.     2   rtlink (clipper 5.0 version)
  73.  
  74.         rtlink fi <objfile> lib sup35sw
  75.  
  76.     3. exospace
  77.  
  78.        exospace fi <objfile> lib sup35sw
  79.  
  80.  
  81.