home *** CD-ROM | disk | FTP | other *** search
/ 100 Games & More / 100gamesandmore1995.iso / spd / bbbhelp.doc < prev    next >
Text File  |  1988-08-25  |  7KB  |  157 lines

  1.  
  2.  
  3.      Public domain and shareware software is actually very easy to use if
  4.  you are familiar with a few basic "DOS" commands.  Those commands are 
  5. "COPY", "DISKCOPY", "DIR", "TYPE", & a few others.  None of the disks are 
  6. "bootable", which means that you cannot place the disk in your floppy and 
  7. turn on the computer.
  8.  
  9.      The first thing to do with the disks is to make a backup copy with the 
  10. following command:
  11.  
  12.      A>DISKCOPY A: B:  <enter>
  13.  
  14.      In the event that you get some sort of error message when using 
  15. "DISKCOPY", you will then have to use the "COPY" command to make a backup 
  16. of your original disk. You would do this by placing a FORMATTED disk in 
  17. the "B" drive and entering the following command at the "A>" prompt:
  18.  
  19.      A>COPY *.* B:  <enter>
  20.  
  21.      Now put the original disk away and use the working copy.  The next 
  22. thing to do is see what files are on the disk.  You would do this by 
  23. placing the disk in the "A" drive and enter the following command:
  24.  
  25.      A>DIR   <enter> - will display the filenames
  26.  
  27.      Now you will see many different filenames.  A filename consists of 
  28. two parts; the filename & the extension.  The filename will be on the left 
  29. (up to 8 characters long) & the extension will be just to the right (up to 
  30. 3 characters long).  You will be looking for certain extension names which 
  31. will tell you something about that type of file.
  32.  
  33.        .EXE - an executable program file
  34.        .COM - a command file
  35.        .BAT - a file with "DOS" commands that may call a program file
  36.        .BAS - a "BASIC" program. Needs GWBASIC or BASICA to run the file
  37.        .ARC - a archived file - needs to be unarchived, contains many files
  38.        .DQC - a compressed file - needs to be uncompressed to be readable.
  39.        .DOC - A DOCUMENTATION FILE - instructions about the program - READ 
  40.               THIS
  41.        .TXT - A DOCUMENTATION FILE - instructions about the program - READ 
  42.               THIS
  43.  
  44.      You may also see files like READ.ME or README.1ST or just README. These 
  45. are all documentation files that will tell you about the program or how to 
  46. start the program.
  47.  
  48.      IT IS VERY IMPORTANT THAT YOU READ DOCUMENTATION FILES FIRST BEFORE 
  49. TRYING TO RUN THE PROGRAM !!!
  50.  
  51. ==============================================================================
  52. To view a documentation file on your screen, use the "TYPE" command.
  53. With your program disk in the "A" drive enter the following command from the 
  54. "A" drive:
  55.  
  56.      A>TYPE filename.ext  (enter) - where filename would be README.DOC or 
  57. whatever the filename is that you wish to display.
  58.  
  59.      This will display the documentation to the screen.  To stop the text 
  60. from scrolling by too fast to be read, press "CTRL S" (the CTRL key and "S" 
  61. key at the same time), then any other key to resume scrolling.  To obtain a 
  62. hard copy of the documentation simply replace the "TYPE" command with the 
  63. "DOS" command "PRINT". When using the "PRINT" command, your "DOS" disk must 
  64. be in the "A" drive & your program disk must be in the "B" drive. Turn your 
  65. printer on and enter the following command:
  66.  
  67.      A>PRINT B:filename.ext  <enter> - where filename would be README.DOC or 
  68. whatever file you wish to print.
  69.  
  70. ==============================================================================
  71.  
  72. An "EXE", "COM", or "BAT" file extension means that when you simply enter 
  73. the filename, the computer will do something.  For instance, if the filename 
  74. were "POKER.EXE", you would simply enter the following at the "A" prompt:
  75.  
  76.      A>POKER  <enter> - the poker program would now be "running" and you 
  77. would be playing it.  This also holds true for "COM" files.  A "BAT" file may 
  78. call a program or it may just display a documentation file. "BAT" files can 
  79. do many different things.
  80.  
  81. ==============================================================================
  82.  
  83. Another type of file (a little tricky to run) is a "BASIC" file.  These types 
  84. have the ".BAS" extension.  Any file with this extension must be run with the 
  85. "BASIC" interpreter.  That simply means that you must have a copy of 
  86. "GWBASIC.EXE" if you have a clone, or "BASICA.COM" if you have an "IBM".  (Also available to directly run a .BAS program is "BASICA.EXE" - just type BASICA 
  87. <basic filename>.)  These 2 files (GWBASIC & the ".BAS" file) must reside 
  88. together or be able to find each other.  If your copy of "GWBASIC" was on the 
  89. floppy in the "A" drive and your "BAS" file was on the "B" drive you would 
  90. enter the following command from the "B" prompt if the filename was "POKER.BAS"
  91.  
  92.      B>A:GWBASIC POKER  <enter> - You must put the "A:" in so your computer 
  93. knows where to find your "BASIC" program.
  94.  
  95.      An easier way to do this is to simply copy "GWBASIC.EXE" to the disk 
  96. that contains the "BAS" files. When both files are together & this disk was in 
  97. the "A" drive you would enter the following command:
  98.  
  99.      A>GWBASIC POKER  <enter> - the poker program would now be "running" & 
  100. you would be playing the game.
  101.  
  102. ==============================================================================
  103.  
  104.      Another important file is one with an ".ARC" extension.  This means that 
  105. it contains many smaller files within it.  This is a type of file that is 
  106. sent over a phone line when using a modem.  All that is required to use the 
  107. files contained inside is to extract them with a special program.  The program 
  108. most commonly used is called "PKXARC.EXE".  To extract files from a file 
  109. called "TEST.ARC", you would use the following command at the "A" prompt:
  110.      
  111.      A>PKXARC TEST B:   <enter> - this would extract all the files that in 
  112. TEST.ARC and place them on a disk that was in the "B" drive.  You must have 
  113. a formatted blank disk in the "B" drive before issuing this command.  When 
  114. all files have been extracted you will see some of the filenames mentioned 
  115. above.
  116.  
  117.      If you have a hard drive you could copy the ".ARC" files & the program 
  118. "PKXARC.EXE" to your hard drive & enter the following command:
  119.  
  120.      C>PKXARC TEST   <enter>  -  this will extract all the files from an 
  121. archived state.  Then you will see some of the different filenames mentioned 
  122. above.
  123.  
  124. ==============================================================================
  125.  
  126.      The other type of file extension to be concerned about is the ".DQC" 
  127. extension, which is only a squished ".DOC" file.  The program to unsquish 
  128. this type of file is usually called "UNSQZ.COM".  To unsquish this file you 
  129. would type the following command:
  130.  
  131.      A>UNSQZ filename.ext  <enter> - where filename.ext would be the actual 
  132. filename & extension.
  133.  
  134.      i.e.  To unsquish a file called "TEST.DQC", type the following command: 
  135.  
  136.      A>UNSQZ TEST.DQC  <enter> - will create a file called "TEST.DOC". It is 
  137. now a readable file.
  138.  
  139. ==============================================================================
  140.  
  141.      Hopefully this file will help enable you to understand & use your disks. 
  142. If all this still sounds like "GREEK", then we strongly suggest that you 
  143. purchase the following disks:
  144.  
  145.          #25 - BEGINNERS - a tutorial on using public domain software.
  146.          #99 - PC TUTOR-DOS - an excellent program teaching about your 
  147. computer & how to use "DOS" commands.
  148.          #112 - DOS HELP - on-line help screens for "DOS" commands.
  149.  
  150.  
  151. BEST BEST BITS & BYTES
  152. P. O. BOX 8245
  153. VAN NUYS, CA 91409
  154. (818) 781-9975
  155.  
  156.  
  157.