home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rxcls.zip / RXLIB.HLP < prev    next >
Text File  |  1996-01-02  |  2KB  |  44 lines

  1. This is an example of a REXX Executable Library (REXX-X Lib).
  2.  
  3. The purpose of a REXX-X Lib is to combine a group, up to 50, of
  4. REXX programs into one executable file, thus creating a Library.
  5.  
  6. Once a REXX-X Lib is created any of the individual programs may
  7. be executed. This is accomplished by passing the name of the
  8. REXX program as the first argument to the REXX-X Lib program.
  9.  
  10. Example: To call the DIFFTIME.CMD REXX program contained within
  11.          the REXX-X Lib, RXLIB1.EXE:
  12.                 RXLIB1 DIFFTIME 11:00:00 19:21:00
  13.  
  14.          To call the SETICON.CMD REXX program contained within
  15.          the REXX-X Lib, RXLIB1.EXE:
  16.                 RXLIB1 SETICON myprog.exe cool.ico
  17.  
  18. When a REXX-X Lib program is run without any arguments, the list
  19. of all available REXX progams will be displayed. Unless a help
  20. file has been associated with the REXX-X Lib, in which case it
  21. will be displayed.
  22.  
  23. This program was created with the retail product RXCL.EXE ($20 US).
  24. The following command line was used:
  25.  
  26.    RXCL /n RXLIB1.EXE /h RXLIB1.HLP difftime.cmd delay.cmd setea.cmd 
  27.          dspea.cmd seticon.cmd
  28.  
  29. Available Programs
  30. ==================
  31.  
  32.    DIFFTIME  HH:MM:SS HH:MM:SS   | Displays the difference between the two
  33.                                  | time.
  34.  
  35.    DELAY secs                    | Will delay for the specified number of
  36.                                  | seconds, then return.
  37.  
  38.    SETEA FileName EaName EaValue | Sets the specified Extended Attribute (EA)
  39.                                  | for the file.
  40.  
  41.    DSPEA FileName EaName         | Displays the value of the requested EA.
  42.  
  43.    SETICON  FileName IconFile    | Associates an icon with the specified file.
  44.