home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / PASCAL / TBTREE16.ZIP / READ.ME < prev    next >
Text File  |  1989-08-06  |  2KB  |  40 lines

  1. Welcome to the world of TBTREE!
  2.  
  3. You will notice two .DOC files and two .TXT files.  The .TXT files are the
  4. "source" for the two .DOC files.  The .TXT are in MicroStar format and can be
  5. read into any word processor/text editor which can handle ASCII.  You can then
  6. reformat it etc. as desired for you own use.  This is especially useful if you
  7. don't have a printer which will print 66 lines per page.  The DOC files are
  8. formatted to be print on a printer which will print 66 lines per page.  Most
  9. people will be able to simple print these using the DOS Print command and they
  10. will have the full documentation.  I have included both the .TXT and .DOC for
  11. convenience only.
  12.  
  13.  
  14.  
  15.                                                      Have Fun,
  16.  
  17.                                                      Dean
  18.  
  19. Added - Just before shipping this, it came to my attention that I had an error
  20. in the SORT unit.  This error has been corrected in the version on this disk.
  21.  
  22. Also, for users of Turbo Pascal 4.0, there is one line in the VLOGICAL.PAS
  23. file which will not compile properly.  It will be obvious when you try.
  24. The line in question now reads:
  25.  
  26.     RECSINPR = PAGESIZE Div SizeOf(FileSpaceInfoRecord); (* Number of file
  27.                                                             space info records
  28.                                                             which will fit
  29.                                                             into one physical
  30.                                                             record           *)
  31.  
  32. Change it to read:
  33.  
  34.     RECSINPR = 51;                                       (* Number of file
  35.                                                             space info records
  36.                                                             which will fit
  37.                                                             into one physical
  38.                                                             record           *)
  39.  
  40.