home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 14 / CD_ASCQ_14_0694.iso / news / 755 / xp4read.me < prev   
Text File  |  1994-01-24  |  4KB  |  101 lines

  1.  
  2.                         "READ ME FIRST" file for:
  3.  
  4.                       ▐██▌                      ▐█
  5.                       ▐▌                         █
  6.                       ▐▌   █ ▐▌ █▐█  ▐█▌  ██▌    █
  7.                       ▐█▌  ▐▌█  ▐▌▐▌   █  █ █  ▐██ 
  8.                       ▐▌    █▌  ▐▌▐▌ ▐██  █ █  █ █
  9.                       ▐▌   ▐▌█  ▐██  █ █  █ █  █ █
  10.                       ▐██  █ ▐▌ ▐▌   ▐█▐  █ █  ▐█▐▌
  11.                                 ██                 
  12.                        L I B R A R Y  version 4.00
  13.                            For CA-Clipper 5.2x
  14.                              (Eval Version)
  15.               (c)1989-1994 by Softwarebureau Pepijn Smits
  16.  
  17.  
  18. Thanks for taking a look at the Expand Library. There is currently hardly
  19. any last minute information to be added. Refer to the Norton Guide for any
  20. information. Refer to the XPDEMO directory for the demo program of the 
  21. Expand Library.
  22.  
  23. 1. Installation:
  24. Install the Library by Typing INSTALL (you may copy the contents of the
  25. ZIP to a disk, but installing from a directory is okay too). If you do not
  26. want to use the installation program, you may simply execute the 
  27. individual XP-???.EXE files. Those programs expand into some files,
  28. this is what they contain:
  29.  
  30. File           Contains
  31. XP-LIB.EXE     EXPAND.LIB and EXPAND.LNK
  32. XP-INC.EXE     EXPAND.CH
  33. XP-DOC.EXE     EXPAND.NG
  34. XP-DEM.EXE     XPDEMO Directory
  35. XP-UPD.EXE     UPDATE Directory
  36. XP-NGD.EXE     NGDEMO Directory
  37.  
  38. 2. Clipper 5.01
  39. Important note for Clipper 5.01x users: The Expand Library supports 
  40. Clipper 5.01. However, the XPDEMO program assumes the presence of
  41. COMMON.CH, which was added with Clipper 5.2. We cannot include
  42. that file with the product. Below you'll find the commands similar to
  43. those found in COMMON.CH that are used by the Demo program:
  44.  
  45. #translate ISNIL( <v1> )         => ( <v1> == NIL )
  46. #translate ISARR( <v1> )         => ( valtype( <v1> ) == "A" )
  47. #translate ISBLOCK( <v1> )       => ( valtype( <v1> ) == "B" )
  48. #translate ISCHAR( <v1> )        => ( valtype( <v1> ) == "C" )
  49. #translate ISDATE( <v1> )        => ( valtype( <v1> ) == "D" )
  50. #translate ISLOG( <v1> )         => ( valtype( <v1> ) == "L" )
  51. #translate ISMEMO( <v1> )        => ( valtype( <v1> ) == "M" )
  52. #translate ISNUM( <v1> )         => ( valtype( <v1> ) == "N" )
  53. #translate ISOBJ( <v1> )         => ( valtype( <v1> ) == "O" )
  54.  
  55. #xcommand DEFAULT <v1> TO <x1> [, <vn> TO <xn> ]     ;
  56.           =>                                         ;
  57.           if <v1> == nil ; <v1> := <x1> ; end        ;
  58.           [; if <vn> == nil ; <vn> := <xn> ; end ]
  59.  
  60. #command UPDATE <v1> IF <exp> TO <v2> ;
  61.          =>                           ;
  62.          if <exp> ; <v1> := <v2> ; end
  63.  
  64. You may include similar commands in a COMMON.CH, and compile the demo.
  65.  
  66. Also, the XPDEMO program uses the compilerswitch /es2, which was introduced
  67. with CA-Clipper 5.2. When compiling with Clipper 5.01, simply remove
  68. the /es2 switch from the Compiler options in XPDEMO.RMK.
  69.  
  70. Furthermore, you may add a similar function if the linker complains
  71. over not finding the CLIPPER520 symbol:
  72.  
  73. Function Clipper520()
  74. Return (NIL)
  75.  
  76. 3. Latest version:
  77. The latest version of the Expand Libary is always placed on CompuServe on the
  78. CLIPPER forum. Look for XP???.ZIP where ??? is a version number. The
  79. latest version will also always be posted on Hekom BBS: +31-3483-4072
  80.  
  81. 4. Adres:
  82. In case of trouble with Installation, or questions about registration,
  83. contact us at:
  84.  
  85. Softwarebureau Pepijn Smits
  86. Sophiastraat 8
  87. 3061 LT Rotterdam
  88. The Netherlands
  89.  
  90. Tel +31-10-2120589
  91. Fax +31-10-2121205
  92. CIS 74750,733
  93.  
  94. Please note that the above adres and Asiapac Network are currently the ONLY
  95. adresses where the Expand Library can be purchased. Contact us to know if
  96. other distributors have been added.
  97.  
  98. Kind Regards,
  99.  
  100. Pepijn.
  101.