home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / PROGRAMM / BUILDER.ZIP / README.TXT < prev    next >
Text File  |  1992-05-14  |  3KB  |  77 lines

  1. New Features in 2.02
  2. --------------------
  3. RUNSWAP    ->  Runswap now looks for the BLDSWAP environment variable to
  4.                determine the directory to swap to.  If that environment
  5.                variable is not set, RUNSWAP swaps to the current drives
  6.                root directory.  Do not have a '\' at the end of BLDSWAP.
  7.                RUNSWAP always tries to swap to EMS first.
  8.  
  9. PICKLIST/FILE -> Now supports PgUp, PgDn, Home, End
  10.  
  11. BCF Commands  -> Much faster than in Builder 2.01.
  12.  
  13. Help  ->  Help is much faster than in Builder 2.01.
  14.  
  15. We have moved to a new location please note the new numbers
  16.              hyperkinetix, inc.
  17.              18001 Irvine Blvd
  18.              Tustin, Ca 92680
  19.              714-573-2260 Voice
  20.              714-573-2297 FAX
  21.              714-573-3993 BBS
  22.              CIS 75300,2010 (mostly in FORUM PCVEND Section 9)
  23.  
  24. Builder Limitations
  25. -------------------
  26. Passing Parameters -> If the value is to be a long integer, the value must
  27.                       either be a long int value (a literal number greater
  28.                       than 32767) or longint variable.
  29.  
  30. Array Indexes  ->  They must be either longint or integer variables or
  31.                    literal values, no int or longint arrays.
  32.  
  33. DriveSize      ->  Will not work on XT machines.
  34.  
  35. Parameters     ->  String concatenation can only occur in one parameter in a
  36.                    subroutine call.  eg.
  37.  
  38.                      MOVE "SOURCE","DEST"+"INATION"  '  is legal
  39.                      MOVE "SOU"+"RCE","DEST"+"INATION" ' is illegal
  40.  
  41. Time and Date Longs ->  Time and Date Longintegers cannot be added or subtracted
  42.                         to one another.  The value obtained is not translatable
  43.                         into a useful string.
  44.  
  45. Declarations   ->  Declarations should occur at the top of the .BLD file in
  46.                    this order: Variables, External Variables, External Subs.
  47.  
  48. RunSwap  ->  The following commands cannot be active when a runswap is issued:
  49.              ScreenBlank, Use Extenedkeyboardbuffer, Clock, Use CtrlBreak.
  50.  
  51. USE DOS  ->  Just like the standard echo in DOS, text output under USE DOS
  52.              does not support colors.
  53.  
  54. CTTY     ->  CTTY is not supported under Builder.
  55.  
  56. Arrays   ->  If the array is defined in an external .obj, another declaration
  57.              is required in a subroutine that is called.
  58.  
  59.              Example: External.bld
  60.  
  61.                Stringarray str[12]
  62.  
  63.                 sub sub1
  64.                   stringarray str[12]
  65.                    str[1]:="Hello"
  66.                    say str[1]
  67.                 end
  68.  
  69. Parenthesis -> Mathmatically operations in Builder must be grouped
  70.                parenthesis.  Only one operation per parenthesis is supported.
  71.                 Paraenthesis are necessary only if the operations are *,/,
  72.                 AND,OR,NOT.
  73.  
  74.                 Example
  75.                  if (( i <> 4 ) AND ( j <> 6)) beep
  76.  
  77.