home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / MADTRB32.ZIP / DISKOVER.DOC < prev    next >
Encoding:
Text File  |  1986-01-23  |  3.1 KB  |  69 lines

  1. Program - Disk Cover (DISKOVER)
  2.  
  3. This program was written to replace the Public Domain program
  4. COVER.  This was a good program however it has a bug in it under
  5. Dos 3.1.  The free space routine did not work.  It gave you
  6. improper values.  The program COVER also went into the wild blue
  7. and hung my machine when it read a quad density (808K) diskette with
  8. 4 sub directories.
  9.  
  10. This program also allows you to dump the data to a disk file so
  11. that you can print it later with PRINT.  This also allows you to
  12. free up your machine faster.
  13.  
  14. If anyone has another brand of printer they could do a quick
  15. patch to the source to change the Condenced and form feed characters.
  16. The program also does a reset to the default values at end of
  17. the print.  If they don't have Turbo Pascal (who doesn't) they
  18. could patch the output print file with their own printer codes.
  19.  
  20. The program is set up to allow up to 40 directories and 700 files.
  21. Not many people have that on floppies, but it will read a hard
  22. disk also and create a mini type list.
  23.  
  24. The program does not allow you to create a file DIR.DIR on the disk
  25. that you are reading.  It assumes that the device has a removable
  26. recording media and that if you are creating multiple labels then
  27. when the program would go to read the next diskette the file DIR.DIR
  28. would be gone.  To get a listing of the Hard Disk go to the A: drive
  29. and type C:DISKOVER, you could then create the file DIR.DIR on the A:
  30. drive.  The program could also be executed from the C: drive and just
  31. request the printer output instead of the file output.
  32.  
  33. The program has been modified to use the Volume-ID if one exists on the
  34. disk.  If it does not then the program has an option to create on for you
  35. if you want it.
  36.  
  37. When entering the Volume ID and Diskette Title message a mini editor
  38. is available for allowing the entry of data.
  39.  
  40.   Ctrl A is left of line
  41.   Ctrl F is right of line
  42.   Ctrl S is left one character
  43.   Ctrl D is right one character
  44.   Ctrl G is delete character forward
  45.   Ctrl H is delete character backward (Backspace also)
  46.   Ctrl Y is delete to end of line
  47.   Right Arrow is right one character (except at end of line)
  48.   Left arrow is left one character (except at beginning of line)
  49.   Home is beginning of line (same as Ctrl A)
  50.   End is end of line  (same as Ctrl F)
  51.   Del is delete character forward (same as Ctrl G)
  52.  
  53.        *  Note Ctrl A and Ctrl Y delete the whole line of data. *
  54.  
  55. You are always in an insert mode and anything typed at the cursor
  56. causes the following characters to be moved to the right.
  57.  
  58. These codes are similar to those in WordStar and Turbo.
  59. When entering the DisKover label information by typing "F3" (Dos return
  60. previous) the previous information for the previous floppy will be returned.
  61.  
  62. Program Written and Copyright (C) by Karson W. Morrison
  63.                                      Marty Morrison
  64.                                      Caleb Computing Center  (Numbers 13:30)
  65.                                      RD 1, Box 531,
  66.                                      Ringoes, New Jersey 08551
  67.  
  68. Please leave this Doc file with the program and source.
  69.