home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / vxtech06.zip / VXTECH06 / EMPLIST / MESSAGE.VRX < prev    next >
Text File  |  1994-04-18  |  284b  |  15 lines

  1. /*:VRX         Main
  2. */
  3. /*
  4.     call Message <text>
  5.  
  6.     - Display a message with the title "Employee list" and one OK button.
  7. */
  8. Main:
  9.     parse arg msg
  10.     buttons.1 = "OK"
  11.     buttons.0 = 1
  12.     call VRMessage VRWindow(), msg, "Employee list", , "buttons.", 1, 1
  13. exit
  14.  
  15.