home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / vxcliser.zip / VXREXX.2 / MACROS / GENCODEO.VRM < prev    next >
Text File  |  1994-12-23  |  410b  |  18 lines

  1. /*  GenCodeO
  2.  
  3.     A VX-REXX macro to copy prototype code into the
  4.     OS/2 clipboard so it can be pasted into external editors.
  5.  
  6.     This macro invokes the object-specific form of the insert code
  7.     dialog.
  8.  
  9.     Assume invoked as a VRXEDIT macro:
  10.  
  11.     call GenCodeO <parent>, <object>, <editWindow>
  12. */
  13.  
  14.     parse arg parent, object, editWindow
  15.     call VREDisp parent, object, "CLIPBOARD"
  16.  
  17.  
  18.