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

  1. /*
  2.  * makeexe.vrm -- This file is executed when the Run Project menuitem is chosen.
  3.  */
  4.  
  5.     parse arg main_window
  6.  
  7.     path = VREPath() || "MACROS\VXREZ\bind.vrm"
  8.  
  9.     call VRMacro path, main_window, 'pmexe'
  10.  
  11.     eventstr = 'nop'
  12.     call VRMethod 'Application', 'GetVar', '__VREProjMakeEXEMenuItem', 'eventstr'
  13.     call VRMethod 'Application', 'PostQueue', 1, 0, eventstr
  14.  
  15.     eventstr = 'call VRMacro "' || VREPath() || 'MACROS\VXREZ\cleanup.vrm"'
  16.     call VRMethod 'Application', 'PostQueue', 1, 0, eventstr
  17.  
  18.     exit
  19.