home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / q / qcchat12.zip / QC.DOC < prev    next >
Text File  |  1993-03-11  |  10KB  |  236 lines

  1. 'Quick Chat' Version 1.0
  2. Written by: Joe Hochstuhl
  3. Associated Professional's Connection
  4.  
  5.  
  6. Forward:
  7.  
  8.         For months, I looked in vain for a decent, down to earth
  9.         little chat program. My requirements were simply,
  10.         something easy and quick to set-up, useful in drop to DOS
  11.         applications, and reasonably decent looking.
  12.  
  13.         Instead I found only complicated routines requiring much
  14.         set-up. Dependant upon running in certain environments,
  15.         basically nothing in which I would have been interested
  16.         in.
  17.  
  18.         So, tossing in the towel on my search, I got carried away
  19.         and wrote the code for Quick Chat. Quick Chat is
  20.         everything I needed. Simple, looks good, requires little
  21.         to no set-up, and very flexible in a "Drop to DOS"
  22.         situation. As most SysOp's use Doorway for their drop to
  23.         DOS, I made Quick Chat so that it runs under DoorWay,
  24.         Marshall Dudley's little miracle of a program that no
  25.         SysOp should be without.
  26.  
  27.  
  28. Shareware Notice:
  29.  
  30.         Quick Chat is shareware. I do not cripple my programs,
  31.         never have, never will. Instead, I added an annoying
  32.         little beginning screen that exists in the unregistered
  33.         version. This 10 second registration screen goes away
  34.         with registration of Quick Chat. I do not ask much. A
  35.         small contribution of $10.00 will get you a registration
  36.         key for 'Quick Chat'. Other than that, the program is
  37.         100% operational.
  38.  
  39.         PLEASE!! Support the shareware concept. Over the years,
  40.         the shareware marketing strategy has enabled end users to
  41.         buy programs at reasonable rates as opposed to the
  42.         commercial market. In fact, the impact of Shareware has
  43.         forced prices on commercial software lower than they would
  44.         have been without shareware competition.
  45.  
  46.         APC Software's is almost a religious believer in the
  47.         shareware concept. Our entire operation is driven by
  48.         shareware, with not one piece of commercial software to
  49.         be found.
  50.  
  51.  
  52. Legal Stuff:
  53.  
  54.         I do not warranty anything about this program save for
  55.         the fact that it WILL take up space on your Hard Drive.
  56.         APC Softwares, or the author Joe Hochstuhl, will in no
  57.         way assume any responsibility for non-operation or loss
  58.         of Data.
  59.  
  60.  
  61. System Requirements:
  62.  
  63.         1) A computer, any computer.
  64.         2) A registered copy of Marshall Dudley's Doorway. (if
  65.            you need a copy of Doorway, you probably haven't been
  66.            a sysop that long. I have the shareware version here
  67.            at APC (513) 288-2420 V.32bis...
  68.  
  69.  
  70. Installation:
  71.  
  72.         Piece of cake. Copy the file QC.EXE into a Pathed directory.
  73.         Any Pathed directory will do. And that's about it.
  74.  
  75.         To start Quick Chat, you Several modes. The basic formats
  76.         are outlined below.
  77.         
  78.         For chat mode: (filename CHAT.BAT)
  79.            @ECHO OFF
  80.            CLS
  81.            DOORWAY SYS /O:T /B:XZ /V:D /P:(path)QC.EXE -mchat (options)
  82.  
  83.         And for Page Mode: (filename PAGE.BAT)
  84.            @ECHO OFF
  85.            CLS
  86.            DOORWAY SYS /O:T /B:XZ /V:D /P:(path)QC.EXE -mpage (options)
  87.  
  88.         For most BBSes that allow external chat programs, you are
  89.         permitted the two batch files. One for chat and the other
  90.         for page. Some BBS software will only allow one file, and
  91.         then to distinquish between chat and page they pass a
  92.         parameter to the batch file. If this is you case try:
  93.  
  94.            @echo off
  95.            cls
  96.            IF %1 == PAGE GOTO PAGE
  97.            IF %1 == CHAT GOTO CHAT
  98.            GOTO END
  99.  
  100.            :PAGE
  101.            DOORWAY SYS /O:T /B:XZ /V:D /P:(path)QC.EXE -mpage (options)
  102.            GOTO END
  103.  
  104.            :CHAT
  105.            DOORWAY SYS /O:T /B:XZ /V:D /P:(path)QC.EXE -mchat (options)
  106.            GOTO END
  107.  
  108.            :END
  109.  
  110.         NOTE: If you in a drop to DOS useing DOORWAY. keep in
  111.               mind DOORWAY is already active so to call these batch
  112.               files from a drop to DOS simply omit the beginning
  113.               doorway commands.
  114.  
  115. Support files (Operation)
  116.  
  117.         As stated before Quick Chat is a very flexible program.
  118.         And it all programs that lend themselves to variable
  119.         enviroments, one must deal with the dreaded command line
  120.         switches. Below is a description of the command line
  121.         switches that are provided with Quick Chat.
  122.  
  123.         -I[?] - SYNTAX: -i[drive\path\dorinfo1.def]
  124.                         -i[Sysop name & BBS]
  125.  
  126.                 EXAMPLE: -ic:\telix\dorinfo1.def
  127.                 EXAMPLE: -iJohn SmithInlow BBS
  128.                 (Note: The above----^^-- is not a typo. the BBS
  129.                 name must be back to back with the SysOp's Last
  130.                 name. A requirement for the registration number)
  131.  
  132.                 This is the variable from which Quick Chat draws
  133.                 it's information from. This command is only
  134.                 required if you are running a registered version
  135.                 of Quick Chat. It can hold two types of
  136.                 information. The first type is the FULL path to
  137.                 the dorinfo1.def file for your BBS. The second
  138.                 type is the SysOp's Name and BBS name. For
  139.                 Maximum preformance of Quick Chat, you'll want to
  140.                 indicate your dorinfo1.def file in this field,
  141.                 otherwise you can run with your registration
  142.                 number in the second method. The program will,
  143.                 however, run without this field in unregistered
  144.                 format.
  145.  
  146.         -k[12345 - SYNTAX: -k012345
  147.                 This switch is where you will need to enter your
  148.                 registration key number. If you are running a
  149.                 registered version of quick chat, this field and
  150.                 the Info field (above) are REQUIRED.
  151.  
  152.         -m(?) - SYNTAX: -mpage
  153.                         -mchat
  154.                 A REQUIRED field. If you run nothing else. This
  155.                 field MUST be present. Pretty much self
  156.                 explanatory. the Mode switch(-m) tells quick chat
  157.                 to open in either the Page or Chat format.
  158.  
  159.         -l[?] - SYNTAX: -l([drive]\[path]\[filename])
  160.                 This field when present tells Quick Chat to
  161.                 record it's operations into a log file that you
  162.                 specify. Simply type the full path and name of
  163.                 the log file you wish to write to.
  164.  
  165.  
  166. Command line examples:
  167.  
  168.         The following command line tells Quick Chat to do the
  169.         following items. Reference dorinfo1.def in the Phantom
  170.         directory for it's variables. Start up in Page Mode.
  171.         Gives registration Key. and writes it's operations to the
  172.         file qc.log in the root directory of C.
  173.  
  174.         (path)qc.exe -ic:\phantom\dorinfo1.def -mpage -k12345 -lc:\qc.log
  175.  
  176.         The following command line tells Quick Chat to not use a
  177.         dorinfo1.def file, but supplies the information for
  178.         registered mode. Start up in chat mode. And supplies
  179.         registration key. Since the -l option is missing, there
  180.         will be no log written.
  181.  
  182.         (path)qc.exe -iJohn SmithInlow BBS -mchat -k12345
  183.  
  184.         The following command line tells Quick Chat to reference
  185.         the dorinfo1.def file for variables. Start in chat mode.
  186.         Since the -k is missing, it will start up in unregistered
  187.         mode.
  188.  
  189.         (path)qc.exe -ic:\telix\dorinfo1.def -mchat
  190.  
  191.         The simpliest command line of all: Start up in
  192.         unregistered mode. Use no information file. Run in
  193.         complete no frills mode. Start up in page mode.
  194.  
  195.         (path)qc.exe -mpage
  196.  
  197.         Finally, A drop to DOS application might go like this. I
  198.         created a batch file in my \TOOLS directory (\tools is a
  199.         pathed directory). The file name I called CHAT.BAT. And
  200.         in this file I had one line like this:
  201.               qc -ic:\phantom\dorinfo1.def -k12345 -mchat
  202.         This implementation of Quick Chat gave me the ability to
  203.         bring any user into chat while we were operating in DOS.
  204.         I simply type CHAT at the command line and up it comes.
  205.         (Keeping in mind that I am useing DOORWAY to drop to dos
  206.         in the first place so it was not needed to use the doorway
  207.         command line as in the BBS batch file examples.) This
  208.         loaded a fully operational registered version of Quick
  209.         Chat, while not useing a log.
  210.  
  211.         Well those should give you the basic idea. If you have
  212.         further questions log onto my BBS, I will be happy to
  213.         help. Registered or Unregistered.
  214.  
  215. --------------------------------------------------------------------------
  216.  
  217.         That's about it. APC Software's is one of the leading
  218.         developers of Doors, BBS packages, and utilities designed
  219.         for use with DOORWAY. Feel free to log onto our bulletin
  220.         Board any time you like to see what other Programs are
  221.         available and written by us.
  222.  
  223.         Registration for any APC Software's program can be done
  224.         by mail to:
  225.  
  226.                         ATT: Program registration
  227.                         APC Softwares
  228.                         215 South High Street
  229.                         Hillsboro, Ohio  45133
  230.  
  231.         APC Voice daytime number is: (513) 393-3499
  232.         APC Support BBS is: (513) 288-2420 v.32bis
  233.  
  234.         Quick Chat is copyrighted work and the Author reserves
  235.         all rights to it. Registration for Quick Chat is $10.00.
  236.