home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: InfoMgt / InfoMgt.zip / remin310.zip / readme.txt < prev    next >
Text File  |  1993-11-06  |  2KB  |  67 lines

  1. This archive contains a port to OS/2 1.x--2.x and DOS of David Skoll's
  2. Remind 3.0.10. David Skoll writes:
  3.  
  4.    Remind is a sophisticated calendar/alarm program, which runs under
  5.    MS-DOS, UNIX and OS/2.  I have posted Patch 10 to comp.sources.misc.
  6.  
  7. The flexibility of the triggers (and some other nice features)
  8. distinguish this program from other reminder-like programs. Norm Walsh
  9. remarks that VREXX can add PM-popup capability to Remind (see below).
  10.  
  11. The OS/2 changes will be integrated into the next release of
  12. Remind. This interim release is to replace an older version, and to
  13. provide a version for the Nov-93 CD of ftp-os2.cdrom.com.
  14.  
  15. Russ Herman (rwh@gov.on.ca) is reponsible for the popup capability and
  16. support for the bcc compiler. EMX/gcc and MSC support are from Norm
  17. Walsh (norm@ora.com) and Darrel Hankerson (hankedr@mail.auburn.edu).
  18.  
  19. Files:
  20.  ./ 
  21.    remind.exe   OS/2 1.x--2.x and DOS executable
  22.    rem2ps.exe   
  23.    remind.man   documentation ("groff -man remind.1 > remind.man")
  24.    rem2ps.man
  25.    defs.rem     sample definitions
  26.  src/           sources
  27.    patches.os2  context-diffs from 3.0.10
  28.    
  29.  
  30. Notes: Norm Walsh suggested using VREXX to add PM popups to Remind.
  31. VREXX is by Richard B. Lam, and is available at ftp-os2.cdrom.com
  32. in pub/os2/ews/vrexx2.zip. 
  33.  
  34. A very basic outline of a VREXX script to add the PM popup capability 
  35. is given by the following popup.cmd file:
  36.  
  37.   /* popup.cmd: Popup ARG(1) message */
  38.   call RxFuncAdd 'VInit', 'VREXX', 'VINIT'
  39.   initcode = VInit()
  40.   if initcode = 'ERROR' then signal CLEANUP
  41.  
  42.   signal on failure name CLEANUP
  43.   signal on halt name CLEANUP
  44.   signal on syntax name CLEANUP
  45.  
  46.   msg.0 = 1
  47.   msg.1 = ARG(1)
  48.   call VMsgBox 'Remind', msg, 1
  49.  
  50.   CLEANUP:
  51.     call VExit
  52.  
  53.   exit
  54.  
  55. The '-k' option of Remind is used to specify the command for MSG-type
  56. reminders. If your shell is cmd.exe, then 
  57.  
  58.     remind "-kpopup %s" mytest.rem
  59.  
  60. might be a typical example (use %%s for 4os2).
  61.  
  62.  
  63. --
  64. Darrel Hankerson hankedr@mail.auburn.edu
  65. 4 November 1993
  66.  
  67.