home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / turbopas / thelp.man < prev    next >
Text File  |  1994-03-07  |  2KB  |  41 lines

  1.                    THELP - Turbo HELP Utility
  2.  
  3.     THELP is a permanently resident HELP utility which attempts to partially
  4. replace the much maligned Turbo manual.  THELP is written in the TurboPascal
  5. language itsself.
  6.  
  7.     Many people have complained that the Turbo Pascal manual, being bound
  8. like a paper back, will not lie flat on the desk and is, therefore, hard to
  9. use.  THELP partially alleviates this problem by making the manual unnecessary
  10. for all but the most difficult problem.
  11.  
  12.     To use run the THELP program before entering Turbo; this can easily be done
  13. at boot up if desired.  THELP will install itsself, prompting with a reminder of
  14. how to enter the program.  (THELP should only be installed once!)  At any time
  15. when in TurboPascal (actually it works any time) that the user has a question
  16. about the format of a Pascal expression, a question about the editor, etc., merely
  17. enter Alt-R to wake up the online help.  THELP, seeing the Alt-R, will open a
  18. large window on the screen and present a table of contents.  By selecting
  19. various options, the user can usually vector himself to an example, demonstrating
  20. the answer to his question.  To return to a higher level than one is enter
  21. Escape.  Entering escape at the table of contents level will close the window,
  22. replacing whatever was there and return the user to his application undisturbed.
  23.  
  24.     THELP, besides being a very useful utility, is a good example of how
  25. to write permanently resident interrupt borrower type software in TurboPascal.
  26. See the LASTCOM program for more detail.
  27.  
  28.     Note that the help on the editor commands list two choices for every command.
  29. The first choice is the "WordStar" configuration (more or less the way it
  30. comes from Borland).  The second list describes the commands installed at
  31. the Greenville Texas PC Club.  If neither list conforms to the way the user
  32. has his Turbo editor installed, he has two choices: reinstall his editor to
  33. match one or the other lists or change the source code to match his
  34. installation and recompile.  If the user does change the source code, it is
  35. recommended that he change the right list, since the left list is more
  36. "standard".
  37.  
  38.     Note further that THELP could have been made faster in opening and
  39. closing the screen windows by accessing display memory directly; however,
  40. the portability gained by using BIOS calls was deemed more important.
  41.