home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / info / document / usergrps / sandiego / issue_12 / folder.cmd < prev    next >
Encoding:
Text File  |  1994-02-09  |  711 b   |  18 lines

  1. /* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
  2. /*  San Diego OS/2 User Group                    */
  3. /*  December 1993 Newsletter                     */
  4. /*  REXX Tip - Add Folders to Popup Menu         */
  5. /*  Original Submitted by Melissa Woo            */
  6. /*  From Champagne-Urbana OS/2 User Group        */
  7. /*  File provided as a courtesy to our readers   */
  8. /*  Refer to article for use and other tips      */
  9. /* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
  10. /* folder.cmd -- opens the specified folder */
  11. call RxFuncAdd "SysSetObjectData", "RexxUtil", "SysSetObjectData"
  12. folder = "c:\desktop\os!2 system"
  13. call SysSetObjectData folder, "OPEN=DEFAULT";
  14. exit /* end of folder.cmd */
  15.  
  16.  
  17.  
  18.