home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / busi / newtoday.zip / TODAY.DOC < prev    next >
Text File  |  1990-03-22  |  2KB  |  48 lines

  1. Here is a little program to insert into your AUTOEXEC.BAT file to remind you
  2. of appointments and special days from now on....
  3.  
  4. All you need to do is use a text editor to edit the today.dat file shipped
  5. with this program, and enter any special days which you want to be reminded
  6. of in the future. The first part of the line is the date which the event is
  7. to be activated. There is no specific order required, though you might want
  8. to keep them in sorted order for your convenience.
  9.  
  10. Anytime the TODAY.EXE is executed it looks at the default data file located
  11. on drive C:\TODAY.DAT unless the filename is specified in the command line.
  12. It gets the system time & date and scans the data file looking for any events
  13. which should occur today. If any events are found, they are displayed and
  14. the system waits on you to press a key to continue. This waiting function is
  15. used to allow the autoexec.bat file to continue unless there are any events.
  16.  
  17. Repeating events may be generated by setting the variable fields of the date
  18. to zero. Any event with the month set to zero will match all months, zero in
  19. the day field matches any day, and zero in the year field will match any year.
  20. Zeros in all date fields cause the event to be displayed each day (or each
  21. time the program is run).
  22.  
  23. The following is an example of the today.dat file showing that there may be
  24. comments inserted in the data file for your information, though these lines
  25. must be scanned each time the program is run.
  26.  
  27.  
  28. ;       Comments follow lines starting with a semicolon
  29. ;       the slash character is required for correct line parsing
  30. ;       empty lines are skipped over.
  31. ;       If an appointment has a time, that can be entered between the date and
  32. ;       the message text. They are not parsed by the program, but are for
  33. ;       information to the user.
  34.  
  35. 00/00/00        Have you called The Technology Toolbox today? (404) 985-5137
  36. 01/19/29        MARTIN LUTHER KING
  37. 02/12/09        ABRAHAM LINCOLN
  38. 02/14/00        VALENTINES DAY
  39. 02/22/00        GEORGE WASHINGTON
  40. 05/13/00        MOTHERS DAY
  41. 06/17/00        FATHERS DAY
  42. 07/04/00        AMERICAN INDEPENDANCE DAY
  43. 12/24/00        CHRISTMAS EVE
  44. 12/25/00        CHRISTMAS DAY
  45. 12/31/00        NEW YEAR'S EVE!
  46.  
  47.  
  48.