home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / netdor3.zip / DISK_11 / IMAGE10.ZIP / PMCAL / REMNDXMP.CMD < prev    next >
OS/2 REXX Batch file  |  1991-06-26  |  1KB  |  36 lines

  1. rem   This file can be used as a front end to the
  2. rem   REMINDER.EXE program.
  3. rem
  4. rem   If you would like the PMCAL reminder facility
  5. rem   to not BEEP when a reminder is displayed,
  6. rem   then do the following:
  7. rem
  8. rem       -  save this file as REMINDER.CMD
  9. rem       -  rename REMINDER.EXE as REMINDX.EXE
  10. rem           The '-q' option on REMINDX.EXE tells
  11. rem           REMINDX.EXE to only display a reminder
  12. rem           without the beep.
  13.  
  14.  
  15. remindx -q  %1 %2 %3 %4 %5 %6 %7 %8 %9
  16.  
  17. rem   To add pager support (Watson only option)
  18. rem   Access to the EZPAGE - MAILSLOT program is required.
  19. rem   The command would be the following
  20. rem
  21. rem   mailslot -c mcgmach1 pcpage "autopage username %1 %2 %3 %4 %5 %6 %7 %8 %9"
  22. rem /* Front-end to REMIND - T.Bridgman
  23. rem  */
  24. rem trace ''
  25. rem '@echo off'
  26. rem parse arg Args
  27. rem '@CALL COREENV'
  28. rem CDr = value('CORE.DRIVE',,'OS2ENVIRONMENT')
  29. rem if substr(Args,1,1) = '"' then pagemsg = substr(Args,2)
  30. rem else pagemsg = Args
  31. rem pagemsg = '"'||'Autopage username ' pagemsg||'"'
  32. rem 'Mailslot -c mcgmach1 pcpage' pagemsg
  33. rem CDr'PMCAL\REMINDER' Args
  34. rem exit rc
  35. rem   where 'username' is the name that you are known by in the paging system.
  36.