home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / vxdemo.zip / MACROS.$$$ / GENCODEG.VRM next >
Text File  |  1993-09-12  |  398b  |  18 lines

  1. /*  GenCodeG
  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 general 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, "", "CLIPBOARD"
  16.  
  17.  
  18.