home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 32 Periodic / 32-Periodic.zip / mm0793.zip / NEWOBJ.CMD < prev    next >
OS/2 REXX Batch file  |  1993-06-10  |  842b  |  21 lines

  1. /* REXX file to create WPS system objects. Edit and/or   */ 
  2. /* add SysCreateObject calls to get the desired objects. */
  3. /*                                                       */
  4. /*                   From the July 1993 MMOUG newsletter */
  5.  
  6. "@echo off"
  7. "cls"
  8. SAY "Creating WPS objects:";
  9.  
  10. /* Add WPS system functions to REXX. */                                      
  11. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'     
  12. call SysLoadFuncs                                             
  13.                                                               
  14. /* Call(s) to add system objects. */
  15. call SysCreateObject 'WPSystem', 'System', '<WP_DESKTOP>' 
  16. call SysCreateObject 'WPKeyboard', 'Keyboard', '<WP_DESKTOP>'                                                              
  17.  
  18. SAY "WPS objects creation completed."
  19. EXIT
  20.  
  21.