home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast.iso / pcmag / cardfl11.zip / CARDFL11.DOC < prev   
Text File  |  1989-03-07  |  4KB  |  102 lines

  1.  
  2. CARDFILE                                   Jeff Prosise
  3. Command                         1987/No. 17 (Utilities)
  4. _______________________________________________________
  5.  
  6. Purpose:  Combines a database of names, addresses,
  7.           phone numbers, and memo-IDs with a Hayes-
  8.           compatible autodialer.
  9.  
  10. Format:   CARDFILE [d:][filespec]
  11.  
  12. Remarks:  CARDFILE is normally loaded with a specific
  13.           database (filespec) by being listed as a line
  14.           in your AUTOEXEC.BAT file.  You can swith to
  15.           another database by repeating the command
  16.           with a different filespec at the DOS prompt.
  17.           The Alt-Right Shift key combination pops up
  18.           the CARDFILE window, and Esc returns you to
  19.           your application.  Within the window, the
  20.           Function keys are assigned thus:
  21.  
  22.           F1 - Begin/save a new or edited card
  23.           F2 - Edit the card currently displayed
  24.           F3 - Delete the card currently displayed
  25.           F4 - Search all cards for a text string
  26.           F5 - Save datafile to disk
  27.           F6 - Dial the phone number currently
  28.                displayed
  29.  
  30.           All card data entry and editing is done in
  31.           overstrike mode.  The backspace key deletes
  32.           the previous character and the four cursor
  33.           keys can position the cursor anywhere in the
  34.           record area.  Enter moves the cursor to the
  35.           start of the next line.  You can page through
  36.           all of the cards with the PgUp, PgDn, and
  37.           Enter keys.  The HOME and END keys let you
  38.           jump quickly to the first or last card,
  39.           respectively.
  40.  
  41.           To search the database, press F4 and entera
  42.           text string.  Pressing Enter resumes the
  43.           search (which is not case-sensitive) after a
  44.           match; Esc cancels the search.  An alternate
  45.           way to find a name quickly is to press Alt
  46.           and a letter key.  To find "Smith," for
  47.           example, hit Alt-S, then use PgDn or Enter to
  48.           skip past "Sagamore" and "Siddhartha."
  49.  
  50.           When used with Hayes-compatible modems, F6
  51.           dials the number currently displayed.  At the
  52.           prompt, pick up the phone and press the
  53.           Spacebar to break the modem connection.  The
  54.           CARDFILE autodialer ignores all non-numeric
  55.           characters except the comma, which inserts
  56.           the pause sometimes needed to access an
  57.           outside line.
  58.  
  59.           Because CARDFILE is a memory-resident
  60.           program, it must assume rather than change
  61.           the modem parameters.  By default,CARDFILE is
  62.           initially configured for a 1200-baud modem
  63.           connected to the COM1.  Using DEBUG you can
  64.           change the value at :0182 from 0 to 1 to
  65.           change from COM1 to COM2, to 2 for COM3, etc.
  66.           Similarly, to change to a different baud
  67.           (bps) rate, change the value at :0184h from
  68.           the default  83h, as follows:
  69.  
  70.            300 baud     43h
  71.           1200 baud     83h
  72.           2400 baud     A3h
  73.           4800 baud     C3h
  74.           9600 baud     E3h
  75.  
  76.           The "ATDT" (dial) and "ATH0" (hangup) strings
  77.           are at addresses :0185h and :018Ah,
  78.           respectively.  While they can be changed
  79.           (especially substituting a "P", ASCII 80 for
  80.           the "T" in the dialing command, note that
  81.           each sequence must be 4 bytes long.  The dial
  82.           string must be delimited by a zero byte, and
  83.           the hangup string must end with 0Dh and 00.
  84.  
  85.           To save memory, the card capacity may be
  86.           lowered from the default 255 (FFh) at :0169.
  87.           Each record takes 192 bytes.  And if the Alt-
  88.           Right Shift "hot key" conflicts with other
  89.           software, change the  default value 09 at
  90.           address :036A to a combination of the
  91.           following:
  92.  
  93.           Right-Shift     1
  94.           Left-Shift      2
  95.           Ctrl            4
  96.           Alt             8
  97.  
  98.           Note:  While CARDFILE will operate under DOS
  99.           2.x, its critical error handler is only fully
  100.           effective with DOS 3.x.
  101. 
  102.