home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / fileutil / fast350.arj / README.DOC < prev    next >
Encoding:
Text File  |  1992-05-08  |  11.8 KB  |  274 lines

  1.                        F A S T    A C C E S S
  2.                             
  3.                             Version 3.50
  4.                            README.DOC File
  5.  
  6. 1) Setup of FAST ACCESS on your system
  7. ======================================================================
  8. If you have used a previous version of FAST ACCESS, you MUST use the
  9. Install program to install FAST ACCESS.  The program will NOT run
  10. unless you do so.
  11.  
  12. **********************************************************************
  13.        You MUST install FAST ACCESS with the Install program !!
  14. **********************************************************************
  15.  
  16. The Install program will install FAST ACCESS in it's own directory
  17. (\FA), make a \BAT directory for your batch files, and move all your
  18. batch files in that directory.  Install will also check your
  19. AUTOEXEC.BAT file, to make sure that your path= statement includes
  20. \BAT and the directory FAST ACCESS was installed in.  Install will
  21. also create a AUTOEXEC.BAT and a CONFIG.SYS file if they do not exist.
  22.  
  23. If your using a DOS version less than 3.0, Install will not install
  24. FAST ACCESS.  Upgrade to DOS version 5.00, it beats ALL other versions
  25. of DOS (uses less memory).
  26.  
  27. When you start FAST ACCESS for the first time, it will display the
  28. main help screen.  You should browse this help screen to understand
  29. how to operate the program.  You should also view the help in the
  30. Setup Configuration.
  31.  
  32. For FAST ACCESS to run your programs, batch files must be created to
  33. execute them.  The batch files to run your programs can be created by
  34. FAST ACCESS when you use the Add command to add a new program. Just
  35. follow the questions FAST ACCESS gives you, and the batch files will
  36. be saved to your disk.  The program will show you exactly what the
  37. batch file looks like while your going through the steps.
  38.  
  39. Batch files can be located in the ROOT directory or in a \BAT
  40. directory ONLY. Any other directory name is NOT supported.
  41.  
  42. NOTE: If your using J.P. Software's 4DOS, you MUST rename your batch
  43.       files to BTM files with the .BTM extension (excluding
  44.       AUTOEXEC.BAT) BEFORE running Install.  Install will ONLY
  45.       recognize .BTM files because it senses that 4DOS is loaded.
  46.       Install will do everything stated in the above paragraph, except
  47.       substitute BAT with BTM.
  48.  
  49. **********************************************************************
  50. Be sure to edit all your existing batch files, including AUTOEXEC.BAT
  51. to load FAST ACCESS, by including FA as the last line of each batch
  52. file.  See batch file examples below.  Use FAEDITOR.EXE to edit your
  53. batch files, either while in the FAST ACCESS enviornment or as a stand
  54. alone program (See Miscellaneous Information: <FAEDITOR.EXE>).
  55. **********************************************************************
  56.  
  57.  
  58. 2) Batch files
  59. ======================================================================
  60. All your batch files should have thE basic design as you see below.
  61. You can add items after the 'echo off' command, or before the FA
  62. command as necessary to customize your batch files to run your programs.
  63.  
  64. Comments                                    Batch File
  65. ----------------------------------------------------------------------
  66. Supress display to screen                   echo off
  67. Clear screen                                cls
  68. Change drive that program is on (optional)  D:
  69. Change to program directory     (optional)  cd\123R2
  70. Program name                                .\123
  71. Change to root directory        (optional)  cd\
  72. Change drive back to original   (optional)  C:
  73. Reload FAST ACCESS                          FA
  74.  
  75. NOTE: The ".\" in the program name is put in to make sure that this
  76.       file will be executed in this directory only.  If the program
  77.       file cannot be found, then you will get an error message, and
  78.       FAST ACCESS will reload. If the ".\" were not included, and the
  79.       program file cannot be found, DOS searches it's path to find a
  80.       file with that name.  If you had a batch file with the same
  81.       name, the computer might go into a loop that you cannot get out
  82.       of.
  83.       
  84. NOTE: The 'echo off' will read '@echo off' when using DOS 3.30 or
  85. later.
  86.  
  87.  
  88. 3) For Floppy Disc Users
  89. ======================================================================
  90. If you have two floppy drives, make sure the "A" drive always contains
  91. the following programs:
  92.  
  93.                         FA.EXE
  94.                         FA.SET
  95.                         FA1.HLP
  96.                         FA2.HLP
  97.                         FA3.HLP
  98.                         FAEDITOR.EXE
  99.                         FAEDITOR.SET
  100.                         COMMAND.COM
  101.                         CHKDSK.COM or CHKDSK.EXE
  102.                         All your batch files to execute your programs
  103.  
  104. If you have one floppy drive, make sure EACH disc contains the FAST
  105. ACCESS files above, EXCEPT only those batch files that will execute
  106. those programs on that disc.  If your running out of disc space, you
  107. can delete the *.HLP files and the FAEDITOR.* files. You won't be able
  108. to use the Help and Edit commands though.
  109.  
  110.  
  111. 4) How FAST ACCESS works
  112. ======================================================================
  113. When you execute a program by pressing the <Enter> key, FAST ACCESS
  114. loads the keyboard buffer with the batch file name to run that
  115. program.  FAST ACCESS then unloads itself from memory (letting you use
  116. ALL your system memory to run your programs), the batch file name in
  117. the keyboard buffer is executed, and your program is automatically
  118. loaded by the commands in the batch file.  When you exit from the
  119. program you were running, FAST ACCESS is reloaded by the batch file.
  120.  
  121.  
  122. 5) Miscellaneous Information
  123. ======================================================================
  124.  
  125. <<Esc Key>>
  126. At any time FAST ACCESS asks you a question, you can always use the
  127. <Esc> key to exit/backout of that item.
  128. ----------------------------------------------------------------------
  129.  
  130. <<Batch names>>
  131. When entering batch file names, you don't have to include the [.BAT]
  132. extension, FAST ACCESS will do that for you.
  133.  
  134. Example: LOTUS.BAT would be entered as LOTUS
  135. ----------------------------------------------------------------------
  136.  
  137. <<Directory names>>
  138. Example: C:\123R2 is a directory
  139. Example: C:\123R2\WORKSHTS is a subdirectory of C:\123R2
  140.  
  141. When entering directory names, just enter the name without drive
  142. extensions or colons.
  143.  
  144. Example: C:\123R2 would be entered as 123R2
  145.          C:\123R2\WORKSHTS would be entered as 123R2\WORKSHTS
  146.  
  147. The <F2> function key will only list directories.  If your program is
  148. in a sub-directory, you must type in that name.
  149. ----------------------------------------------------------------------
  150.  
  151. <<Password Protection>>
  152. If your using the password Enabled command (in the Setup window), you
  153. MUST ALWAYS shut down your computer by first quitting FAST ACCESS.  If
  154. you don't do this, the password function will NOT be enabled.  FAST
  155. ACCESS updates it's setup file (FA.SET) on the Quit command.
  156. ----------------------------------------------------------------------
  157.  
  158. <<Mouse users>>
  159. To execute programs, double-click the program name.  Any item that is
  160. highlighted in a different color such as Arrow and Enter symbols,
  161. etc., can usually be clicked on with the mouse.  To see the version
  162. number of FAST ACCESS click the (≡) symbol on the left side of the
  163. command line.  The mouse can be used in ALL commands.  Just experiment
  164. with it.
  165. ----------------------------------------------------------------------
  166.  
  167. <<FAST ACCESS files>>
  168. FA      .EXE - FAST ACCESS program
  169. FA      .SET - Setup file
  170. FA1     .HLP - Help file for main screen
  171. FA2     .HLP - Help file for setup screen
  172. FA3     .HLP - Help file for Add, Edit & View commands
  173. FAEDITOR.EXE - Editor used to edit batch files
  174. FAEDITOR.SET - Setup file
  175. FAPARK  .COM - Parks hard drive heads
  176. README  .DOC - This file
  177. ORDER   .FRM - To register FAST ACCESS
  178. LICENSE .DOC - Site license form
  179. UPDATE  .DOC - Lists the latest revisions to FAST ACCESS
  180. ----------------------------------------------------------------------
  181.  
  182. <<FAEDITOR.EXE>>
  183. You can also use FAEDITOR.EXE as a stand-alone program.  At the DOS
  184. prompt type FAEDITOR <filename>, where filename is any valid DOS ASCII
  185. text file.  Make sure to include the full pathname.
  186.  
  187. Example: FAEDITOR C:\BAT\123R2.BAT or FAEDITOR C:\CONFIG.SYS
  188.  
  189. FAEDITOR will work as a replacement text editor in XTreeGold, or
  190. XTreePro Gold.
  191.  
  192. NOTE: FAEDITOR can only edit pure ASCII text files smaller than 23K in
  193.       size.
  194. ----------------------------------------------------------------------
  195.  
  196.  
  197. 6) Command-line switches
  198. ======================================================================
  199. There are four command-line switches that can be used as optional
  200. start-up parameters to start FAST ACCESS.
  201.  
  202. /M  = Monochrome mode.  Force screen to display in monochrome mode.
  203. /NC = No Clock display.  This switch will disable the code to display
  204.       the clock.  If your machine hangs (crashes) when you run FAST
  205.       ACCESS, try this switch.
  206. /NK = No Key display.  This switch will disable the code to display
  207.       the NUM and CAPS keys.  If your machine hangs (crashes) when you
  208.       run FAST ACCESS, try this switch.
  209. /NE = No Extended screen.  Restricts FAST ACCESS to 25 line display
  210.          mode.
  211.  
  212. You can use one or all switches to run FAST ACCESS.
  213.  
  214. Example: FA /M       = Monochrome display
  215.          FA /M/NC/NK = Monochrome display with no clock or keys
  216.                        displayed.
  217.  
  218. NOTE: If you start FAST ACCESS with any switch, when you Add a batch
  219.       file, the batch file will automatically add whatever switches
  220.       you have included.
  221. ----------------------------------------------------------------------
  222.  
  223.  
  224. 7) Technical information
  225. ======================================================================
  226. FAST ACCESS, FAEDITOR and INSTALL were written for Microsoft's BASIC
  227. 7.1 PDS compiler by Peter R. Muhlhauser.  Crescent Software
  228. (203) 438-5300 provided QuickPak Professional v4.00 (contains assembly
  229. language routines) and P.D.Q. v2.01 (a replacement linking library
  230. used by INSTALL), which FAST ACCESS uses extensively.  Also, Crescent
  231. provided the majority of the code for FAEDITOR.EXE.  MicroHelp Inc.
  232. (800) 922-3383 provided additional assembly routines (it's library
  233. is much more extensive than Crescent's). All EXE files were compressed
  234. using PKWare's PKLITE Professional (v1.13).
  235.  
  236. FAST ACCESS and all associated files are (C) Copyrighted 1987-1992
  237. with all rights reserved by MSI-Muhlhauser Steel Inc. and
  238. Peter R. Muhlhauser.
  239.  
  240. If you distribute FAST ACCESS to friends, associates, or to a computer
  241. bulletin board system (BBS), please distribute the file FAMENU.ZIP
  242. rather than the individual files for FAST ACCESS.
  243.  
  244. Also, if you like FAST ACCESS, have found some bug(s) in the program,
  245. have any feasible suggestions/improvements for the program, you can
  246. contact me at one of the following.
  247.  
  248. Muhlhauser Steel Inc.
  249. 2437 S. Willow Ave.
  250. Bloomington, CA 92316
  251.  
  252. Phone (714) 877-2792 PST
  253. Fax   (714) 877-1649
  254. CompuServe mail: CIS 70143,501
  255.  
  256.                    
  257. 8) Problems when running FAST ACCESS
  258. ======================================================================
  259. If your using a mouse, be sure to upgrade to the latest mouse driver
  260. for your mouse.  Older mouse drivers may crash/hang your system.
  261.  
  262. Unloading TSR's with batch files may not always work.  DOS loads it's
  263. batch processor first, and the TSR may not be able to unload.
  264.  
  265. If FAST ACCESS will not load on your computer, your system may be
  266. infected with a virus.  The virus called 'Stoned' is known to crash
  267. FAST ACCESS.  Purchase an Anti-Virus program to clean your system.
  268. **********************************************************************
  269.  
  270.  
  271. To print this file, type at the DOS prompt: TYPE README.DOC>PRN
  272. ----------------------------------------------------------------------
  273. END
  274.