home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / fixobj.zip / FIXOBJ.DOC < prev   
Text File  |  1994-11-24  |  2KB  |  55 lines

  1. This OS/2 REXX program will generate a REXX program that can be
  2. used to build objects defined in an .RC file. The .RC files reside
  3. in the ?:\OS2 directory.
  4.  
  5. Its primary function is to recreate standard OS/2 system objects
  6. deleted inadvertently. However, the programs it generates can also
  7. serve as a learning guide for creating your own WPS objects.
  8.  
  9. Output will be created in a file named FIXOBJnn.CMD in the
  10. directory pointed to by the TEMP environment variable. "nn" will be
  11. the next sequential number following any existing files created by
  12. this program. The file name created will be shown on the console at
  13. completion of this program.
  14.  
  15. The generated program may be moved to any convenient location or
  16. left in the \TEMP directory at the user's discretion.
  17.  
  18. This program requires either one or two parameters. The first, and
  19. required, parameter is the object ID of the object to be created.
  20. An object ID is the unique string preceded with a '<' and
  21. terminated with a '>' assigned to the object when it was created
  22. (e.g. <WP_DESKTOP>).
  23.  
  24. The leading "<" and trailing ">" will be assumed and may optionally
  25. be omitted. Furthermore, the object ID may be entered case
  26. insensitively as the program will translate it to upper case since
  27. all standard system object IDs are uppercase.
  28.  
  29. The second, and optional, parameter is the name of a valid .RC
  30. file. If none is specified, INI.RC in the ?:\OS2 directory will be
  31. used.
  32.  
  33. The objects that will be generated include the object whose object
  34. ID is specified along with any other objects whose location is
  35. given as the specified object ID. For example, if the object ID of
  36. <WP_PROMPTS> is specified, the generated program will create the
  37. "Command Prompts" folder along with the following objects in the
  38. folder:
  39.  
  40.      "DOS from Drive A:"
  41.      "DOS Full Screen"
  42.      "DOS Window"
  43.      "Dual Boot"
  44.      "OS/2 Full Screen"
  45.      "OS/2 Window"
  46.      "WIN-OS/2 Full Screen"
  47.  
  48. A complete list of the standard system object IDs can be found in
  49. the REXX Reference Summary Handbook (IBM PUBORDER & SRL #
  50. S246-0078-00 / ISBN 0-9639854-1-8). The handbook is also available
  51. from Indelible Blue or may be ordered directly from
  52. C F S Nevada, Inc. at 800-REXX-OS2 (800-736-9672).
  53.  
  54. This program is provided "as is" by C F S Nevada, Inc. and its
  55. author, Dick Goran (71154.2002@compuserve.com).