home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / bstgms.zip / HELP.DOC < prev    next >
Text File  |  1980-01-01  |  8KB  |  152 lines

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