home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / networking / amitcp / amislate1.0.lha / AmiSlate1.0 / ExampleRexx / easyreq.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1995-03-13  |  309 b   |  10 lines

  1. /* An ARexx program demonstrating AmiSlate's EasyRequest function */
  2. parse arg CommandPort ActiveString
  3.  
  4. address (CommandPort)
  5. options results
  6.  
  7. EasyRequest '"'||"AmiSlate REXX Requester"||'"' '"'||"Please pick a number"||'"' "1|2|3|4|5|0"
  8. EasyRequest "Answer" '"'||"You picked option number "||rc||'"' "Yup"
  9.  
  10.