home *** CD-ROM | disk | FTP | other *** search
/ Software Du Jour / SoftwareDuJour.iso / BUSINESS / DBASE / DBCMPILE.ARC / COMPILE.DOC next >
Text File  |  1986-02-17  |  1KB  |  30 lines

  1.                  Pseudo-Compiler for dBase programs
  2.  
  3.                  Compile2.prg - dBase II version
  4.                  Compile3.prg - dBase III version
  5.  
  6.                  By: J. Ron Menning / Alliance, Ohio
  7.                  Published in 'PC-Magazine' Volume 5, Number 5
  8.                  'Power User' Column
  9.                  March 11,1986
  10.  
  11.  
  12.          COMPILE.PRG will take your dBase command files, and remove all
  13.        comment lines, blank lines, indentation and the trailing blanks
  14.        some editors can leave behind.  It will create a target file with
  15.        the same name as the source file except that the last letter of
  16.        the new filename will be 'C'.  The new file will run faster due
  17.        to the fact that the dBase interpreter will be saved the work of
  18.        purging this stuff out as it goes.  This will, of course make the
  19.        target file more difficult to debug, so it's advisable to keep your
  20.        original file.  One possible improvement, for the program, might
  21.        be to add a facility to convert all text not within quotes to lower
  22.        case, to save the interpreter some more work.  I'm working on that,
  23.        and I will upload it when I can get the time to make it work.
  24.  
  25.  
  26.                                              John Peschken
  27.  
  28.        P.S. The program requires that the .DBF file with the same name be
  29.        in the current directory.  I.E. COMPILE2.DBF needs to be used with
  30.        COMPILE2.PRG.