home *** CD-ROM | disk | FTP | other *** search
/ HomeWare 14 / HOMEWARE14.bin / prog / fdate80a.arj / TIC.DOC < prev   
Text File  |  1993-07-20  |  4KB  |  115 lines

  1. DEMONSTRATION BATCH FILE: TIC.BAT
  2. =================================
  3.  
  4. TIC.BAT is a sample application that uses FDATE to create a "tickler
  5. file" batch file.  The default name for the file is C:\TICKLER.BAT.
  6.  
  7. In order to use TIC on a regular basis, you should:
  8.  
  9.    * Use your favorite text editor to modify TIC.BAT so that it
  10.      will use your favorite text editor in the EDIT function.
  11.      (TIC.BAT ships with the editor set to SPFPC).
  12.  
  13.    * If you wish, use your favorite text editor to modify the
  14.      first few lines of TIC.BAT, so the "SET TicBAT=" statement
  15.      sets TicBAT to a different file name for the tickler batch file.
  16.      Note that you must specify the full filename,
  17.      including path and extension.
  18.  
  19.    * Put TIC.BAT in a directory that is in your PATH.
  20.  
  21.    * add the following lines to your AUTOEXEC.BAT file:
  22.  
  23.          CLS
  24.          rem show today's appointments
  25.          call TIC T
  26.          echo.
  27.  
  28.          rem show tomorrow's appointments [note space betwee T and +1]
  29.          call TIC T +1
  30.          echo.
  31.  
  32.          pause
  33.  
  34.      This will cause the tickler batch file to be run when you
  35.      boot your computer, showing you your scheduled appointments.
  36.  
  37. HELP
  38. ====
  39. Running TIC without any parms will cause it to display a HELP screen.
  40.   EXAMPLE: tic
  41.  
  42.  
  43. ADDING A NEW TICKLE (SINGLE DATES)
  44. ==================================
  45. To add a new SINGLE DATE tickle, invoke TIC.  The first parm must be the
  46. date of the desired tickle, in the format mm/dd/yy.  (You may use the
  47. pseudodate TT for the current month or year, if you wish.)
  48.  
  49. This parm must be followed by a description of the appointment.
  50.   * If no description is entered, TIC interprets the date in parm 1
  51.     as a request to display the tickles for that date.
  52.  
  53. NOTE: DOS batch files strip commas out of their input parameters, so
  54. any commas in your description will be lost.
  55.  
  56.   EXAMPLE: tic 5/5/92 Cinco de Mayo party w/ Susan: El Charro @ 6pm
  57.   EXAMPLE: tic 5/5/tt Cinco de Mayo party w/ Susan: El Charro @ 6pm
  58.  
  59.  
  60. ADDING A NEW TICKLE (REGULAR WEEKLY APPOINTMENTS)
  61. =================================================
  62. To add a new REGULAR APPOINTMENT tickle, invoke TIC.  The first two
  63. parms must be the string "dow" (or "DOW") and the day-of-the-week
  64. number of the day of the week (e.g. 2 for Monday).
  65.  
  66. These parms should be followed by a description of the appointment.
  67.  
  68.   EXAMPLE: tic dow 2 Regular Monday morning staff meeting @ 8:30 am
  69.   EXAMPLE: TIC DOW 6 STANDING TENNIS DATE WITH JANICE AT 6:30
  70.  
  71.  
  72. CHECKING YOUR TICKLES
  73. =====================
  74. You can check your tickler file appointments for a particular day at
  75. any time by invoking TIC with only a date parm or the pseudodate T or
  76. TODAY.
  77.  
  78.   EXAMPLE: tic t         displays appointments for today
  79.   EXAMPLE: tic today     displays appointments for today
  80.   EXAMPLE: tic 5/5/92    displays appointments for May 5, 1992
  81.   EXAMPLE: tic 5/5/tt    displays appointments for May 5 of this year
  82.   EXAMPLE: tic tt/5/tt   displays appointments for the 5th of this month
  83.  
  84. You can check your tickler file appointments for a date from one to
  85. seven days in the future by invoking TIC with two parms: T (for today)
  86. followed by a number of +1 through +7.  Unsigned numbers are treated
  87. as if they have a plus sign.  Negative numbers will show appointments
  88. for days in the past.
  89.  
  90.   EXAMPLE: tic t      displays appointments for today
  91.   EXAMPLE: tic t  1   displays appointments for tomorrow
  92.   EXAMPLE: tic t +1   displays appointments for tomorrow
  93.   EXAMPLE: tic t +7   displays appointments for a week from today
  94.   EXAMPLE: tic t -1   displays appointments for yesterday
  95.  
  96. Note that the space between the first parm "T" and the second, number
  97. parm, is required:
  98.  
  99.   EXAMPLE: tic t+2    does not recognise "t+2" as "t +2".
  100.                       Displays appointments for TODAY.
  101.  
  102. If the tickler batch file does not exist, nothing will be displayed.
  103.  
  104. REMOVING DEAD TICKLES
  105. =====================
  106. After a while the tickler batch file will become very long, filled with
  107. "dead tickles".  You can edit it with a text editor to remove the dead
  108. tickles:
  109.  
  110.   EXAMPLE: tic edit
  111.   EXAMPLE: TIC ED
  112.  
  113. or simply delete it and let TIC create a new one the next time
  114. you use TIC to add a tickle.
  115.