home *** CD-ROM | disk | FTP | other *** search
/ The Best of Mecomp Multimedia 2 / MECOMP-CD-II.iso / amiga / tools / time / ezcron / rexx / reminder.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1997-11-09  |  278 b   |  11 lines

  1. /* REMINDER AREXX SCRIPT v1.0 */
  2.  
  3.     LF= '0a'x
  4.  
  5.     arg eventtext
  6.     if ~show('L','rexxreqtools.library') then
  7.             call addlib("rexxreqtools.library", 0, -30, 0)
  8.  
  9.     call rtezrequest("+ + +  R E M I N D E R  + + +"||LF||""||LF||eventtext, "Okay", , "rt_reqpos = reqpos_centerscr")
  10.  
  11.