home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / bor_tips / ti236.asc < prev    next >
Encoding:
Text File  |  1988-04-18  |  2.7 KB  |  67 lines

  1. PRODUCT : TURBO PASCAL     NUMBER : 236
  2. VERSION : 2.00B
  3.      OS : MS-DOS
  4.    DATE : February 13, 1986
  5.  
  6.   TITLE : SKIP "INCLUDE ERROR MESSAGES?" PROMPT
  7.  
  8. This   patch   automatically  responds  to  the  "Include   Error 
  9. Messages?"  prompt  and proceeds to either load  or  exclude  the 
  10. error messages (whatever is specifed by the patch you apply). The 
  11. message still appears, but does not  wait  for an answer. 
  12.  
  13. ERROR MESSAGES NOTE:  The new version of TINST lets you designate 
  14. the  path to the error messages in the event they are stored in a 
  15. directory  other than the one active at the time Turbo Pascal  is 
  16. loaded.  
  17.  
  18. Use  the DOS utility,  DEBUG,  to apply the following patch to  a 
  19. copy  of  your  original .COM  file.   Copy  DEBUG.COM  into  the 
  20. directory  (or  onto  the diskette) where your  working  copy  of  
  21. .COM  is  located.   At  the  DOS  prompt,  type  the  following 
  22. information  exactly  as  it  appears.  (Conclude  each  line  by 
  23. pressing <Enter>.) 
  24.  
  25. Note:   1.   DEBUG is not sensitive to upper and lower case.  all              
  26. addresses  are  listed  in upper case  for  ease  of              
  27. readability.
  28.  
  29.         2.   While in DEBUG, the prompt will appear as a dash
  30. (-).
  31.  
  32.         3.  If you do not receive the appropriate response, press             
  33. "q",  followed  by <Return>,  to  quit.   Check  your             
  34. version numbers and, if correct, try again.  
  35.  
  36. TURBO.COM - "YES" - MESSAGES INCLUDED
  37.   
  38.      YOU TYPE                               THIS APPEARS
  39.  
  40.      DEBUG TURBO.COM<ENTER>                 -
  41.      E2716                                  XXXX:2716 E8.
  42.      E9<Space>                              0C
  43.      1C<Space>                              DB
  44.      00<Space>                              E8
  45.      E9<Space>                              F5
  46.      05<Space>                              02
  47.      00<Return>                             -
  48.      w                                      writing XXXX bytes
  49.      q                                      DOS prompt  
  50.                                                              
  51.  
  52. TURBO.COM - "NO - MESSAGES NOT INCLUDED
  53.  
  54.      YOU TYPE                               THIS APPEARS
  55.   
  56.      DEBUG TURBO.COM<ENTER>                 -
  57.      e2716                                  XXXX:2716 E8.
  58.      E9<Space>                              0C
  59.      1C<Space>                              DB
  60.      00<Space>                              E8
  61.      E9<Space>                              F5
  62.      08<Space>                              02
  63.      00<Return>                             -
  64.      w                                      writing XXXX bytes
  65.      q                                      DOS prompt
  66.  
  67. ..end