home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 035 / vxrxs21a.zip / macros / vxrez / makeexe.vrm < prev    next >
Text File  |  1994-10-31  |  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.