home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / clipper / bcklib2.zip / READ.ME < prev    next >
Text File  |  1993-05-30  |  3KB  |  69 lines

  1. ERRATA/CHANGES
  2.  
  3. Release 1.02
  4.  
  5.   CLIPPER 5.2 COMPATIBLE
  6.  
  7.   All warning messages when compiling library source code have been removed.
  8.  
  9.   Added pIf() to library.  Syntax is pIf(aCond) where aCond is an array,
  10.   where each element is a 2-element array, with the first element being
  11.   a code block which will be evaluated and if .true., then the second element,
  12.   also a code block, is evaluated and the end result is returned.  If
  13.   multiple IF_BLOCKs are .true., only the first RET_BLOCK is evaluated and
  14.   returned.
  15.  
  16.   Modified aRead() to be able to read a line, where each line is parsed and
  17.   returned as an element of a sub-array.  For example,
  18.   aRead("any.txt", , , {"/", "/"}) will return an array, where each element of
  19.   the array is an array containing 2 elements, which is one for each delimiter
  20.   specified.  If any.txt contained these lines:
  21.   Field 1/Field 2
  22.   Field 3/Field 4
  23.   then the returned array will contain:
  24.   {{"Field 1", "Field 2"}, {"Field 3", "Field 4"}}
  25.  
  26.   Modified fNumLines(), as it could return a value too large.
  27.  
  28.   Added vBox() function.
  29.  
  30.   v6.9 of General Ledger function BecknerGL().  Allows same account numbers to
  31.   be used in multiple sets of books.
  32.  
  33.   Added fDbt2Dbv() to support FlexFile memoes.  Requires FlexFile.
  34.  
  35.   Fixed bvAsst utility, so as not to skip 1st dir entry when wilcard entered.
  36.  
  37.   Corrected iElapse(), as it could cause a bound error upon repeated calls.
  38.  
  39.   Fixed pErrorSys(), to eliminate invalid return in error handler.
  40.  
  41.   Added vTwirl().  Each call returns different "twirl" character.
  42.  
  43.   Added vPullDown().  Pull-down menus.
  44.  
  45.   Added V_Copy() & V_Append to add COPY TO and APPEND FROM functionality to
  46.   FlexFile version 1.09 (non-RDD version).  Requires FlexFile.
  47.  
  48.   Force default background color in vBackground() to gray on white.
  49.  
  50.   v7.0 of General Ledger function BecknerGL().  Corrected Get Acct option.
  51.  
  52.   Fixed dEndMonth() logic.
  53.  
  54.   Added option <MM> to the forms generator, BecknerFG().
  55.  
  56.   Added 4th parameter to fExtract(), lEcho.  Defaults to .n., if .y., then
  57.   echos record # on screen for processed records.  Also modified EXTRACT
  58.   utility to use this new parameter, setting it to .y. .
  59.  
  60.   Added new function fScan().
  61.  
  62.   Made Row & Col fields (RR, CC) 100 characters for longer expressions in the
  63.   Forms Generator.
  64.  
  65. Release 1.01 1.20.93
  66.   Corrected undefined identifier VERSION6 in BecknerGL() meta-function.
  67.   Thanks to Walter Joseph CIS #76150,1533 for this report.
  68.  
  69.