home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / fwktl101.zip / WHATSNEW.101 < prev   
Text File  |  1996-05-28  |  3KB  |  74 lines

  1. FWKTL(TM) Text_program Launcher for OS/2 Protected Mode, 1996 May 28.
  2. (C)Copyright Frederick W. Kantor 1996. All rights reserved.
  3.  
  4.  
  5.  
  6. What's New in FWKTL(TM) Version 1.01:
  7.  
  8. 1. In a .CMD program, it is possible to build a command line up to 1023
  9.    characters long, compared to a limit of ca 300 characters when entering
  10.    a command line directly from the keyboard.  FWKTL Version 1.01 is now
  11.    able to handle the 1023_character command line which can be made in a
  12.    .CMD program.
  13.  
  14. 2. Corrected a bug which limited how one could specify a file.
  15.  
  16.    FWKTL can now search for a program to launch which is specified using
  17.  
  18.       d:\path\filename.ext   (environment PATH not searched)
  19.  
  20.       filename.ext           (current directory is searched before PATH)
  21.  
  22.       d:filename.ext                (environment PATH not searched)
  23.       d:.\filename.ext               "
  24.       d:..\filename.ext              "
  25.       d:subpath\filename.ext         "
  26.       d:.\subpath\filename.ext       "
  27.       d:..\subpath\filename.ext      "
  28.       \\machine\path\filename.ext    "
  29.  
  30.       \path\filename.ext        (FWKTL inserts current drive's  D:  before
  31.                                  initial single '\';  environment PATH not
  32.                                  searched)
  33.  
  34.       .\filename.ext            (the first base directory used is the current
  35.       ..\filename.ext            directory, then directories on PATH are used
  36.       subpath\filename.ext       sequentially as the base directory until the
  37.       .\subpath\filename.ext     first copy of the file reached in that order
  38.       ..\subpath\filename.ext    is found)
  39.  
  40.       For "file not found", FWKTL returns exit errorlevel = 65533
  41.       (your display may show this as -3 ).
  42.  
  43.                  Note: PROMPT $r can be used to display the exit errorlevel;
  44.                        for example, for [d:\path errorlevel], use
  45.  
  46.                        PROMPT [$p $r] <enter>
  47.  
  48.  
  49.  
  50.    Notes re specifying program to launch:
  51.  
  52.       Wildcards are not permitted.
  53.  
  54.       Backslash ('\') and forwardslash ('/') can be used in specifying a
  55.       program.
  56.  
  57.       If a drive letter, initial backslash ('\'), or initial forwardslash
  58.       ('/') is used in specifying the program to launch, then FWKTL does
  59.       not search the environment PATH.
  60.  
  61.       If a single initial backslash ('\') or forwardslash ('/') is used in
  62.       specifying the program to launch, FWKTL inserts the default drive
  63.       letter and a colon  D:  before that '\' or '/'.
  64.  
  65.       Any entries of the form
  66.           .\  or ./   current directory
  67.           ..\ or ../  shift to the directory immediately above
  68.       appearing in the program specification are processed before the
  69.       program is launched, and do not appear in the origin information
  70.       provided to the program.  More than one '..\' or '../' can be used.
  71.  
  72.       When a gap is present in a filename (e.g., in HPFS), use double
  73.       quotes (") about the full filename, as before.
  74.