home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 086 / MAKECRD.ZIP / README.DOC < prev    next >
Text File  |  1993-08-13  |  3KB  |  129 lines

  1.  
  2.  
  3.     MAKECRD
  4.     =======
  5.  
  6.  
  7.         Make A Windows Cardfile from a TAB Delimited data file
  8.         OR a fixed format data file.
  9.  
  10.  
  11.         August 8, 1993 in Brooklyn Park, Minnesota
  12.     
  13.     
  14.         Guaranteed 100% Pure FREEWare.... I know.... I wrote it!!!
  15.     
  16.      
  17.     
  18.                                                  Enjoy!!!
  19.                                                  
  20.                                                  
  21.                                                  
  22.                                                  
  23.                                                  MJM
  24.                                                  ===
  25.                                                  
  26.  
  27.  
  28. ---------------------------------------------------------------------------
  29.  
  30.  
  31.                                                  
  32.     Variable Format Input Data File Format:
  33.     =======================================
  34.     
  35.     Position 1-40(or less):   Index Value followed by a TABCharacter
  36.     Up to 10 fields of 40 characters(or less) separated by a TABCharacter
  37.  
  38.  
  39.  
  40.  
  41.     Example:
  42.     ========
  43.     
  44.     Smith, John~555-1212~7941 Noname Avenue North~Brooklyn Park, MN 55444
  45.     Jones, Jim~555-1213~3532 NoName Avenue South~Minneapolis, MN 55406
  46.         
  47.     Where ~ is my notation for a TABCharacter (CHR(9))
  48.         
  49.     See TESTDATA.DAT file for another example.
  50.  
  51.  
  52.  
  53. ---------------------------------------------------------------------------
  54.     
  55.  
  56.  
  57.     Fixed Format Input Data File:
  58.     =============================
  59.  
  60.     LASTNAME  Position  1 for 18
  61.     FIRSTNAME Position 19 for 16
  62.     INITIALS  Position 35 for 3
  63.     PHONE     Position 38 for 9
  64.     LOCATION  Position 47 for 33
  65.  
  66.  
  67.     See TESTFIX.DAT for a sample file.
  68.  
  69.  
  70.  
  71. ---------------------------------------------------------------------------
  72.  
  73.  
  74.  
  75.     Run the program like this:
  76.     ===========================    
  77.     
  78.      
  79.     MAKECRD testdata.dat       Runs Program with Variable Format Input
  80.  
  81.           File created will be named TESTDATA.CRD
  82.         
  83.  
  84.  
  85.         
  86.     MAKECRD testfix.dat X      Runs Program with Fixed Format Input
  87.  
  88.         File created will be named TESTFIX.CRD
  89.                     
  90.  
  91.  
  92. --------------------------------------------------------------------------
  93.  
  94.  
  95.  
  96. Files:
  97. ======
  98.  
  99.  
  100. README.DOC        The file you are looking at right now!!!
  101.  
  102.  
  103. MAKECRD.EXE        Executable - Created with Clipper 5.2b & Blinker 2.10
  104.  
  105.  
  106. MAKECRD.PRG        Clipper 5.x Source Code
  107.  
  108.  
  109. CL.BAT            Compiles and Links MAKECRD.PRG into MAKECRD.EXE
  110.  
  111.  
  112. BLINK.LNK        Blinker 2.10 linker input command file(RTLINK will work too!)
  113.  
  114.  
  115. TESTDATA.DAT    Sample Variable Format input file
  116.                    (TAB character between fields)
  117.  
  118.  
  119. TESTDATA.CRD    Output CRD file after executing MAKECRD
  120.  
  121.  
  122. TESTFIX.DAT     Sample Fixed Format input File
  123.  
  124.  
  125.  
  126. ---------------------------------------------------------------------------
  127.  
  128.  
  129.