home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / nicol / sti_err / sti_err.txt < prev   
Encoding:
Text File  |  1980-01-01  |  2.9 KB  |  202 lines

  1.  
  2.  
  3.  
  4.         
  5.         
  6.         
  7.         
  8.         
  9.         
  10.         
  11.         
  12.         
  13.         
  14.         
  15.         
  16.                                  ERROR MESSAGE SYSTEM 1.0
  17.         
  18.                                For Turbo Pascal Version 5.0
  19.         
  20.         
  21.         
  22.         
  23.         
  24.         
  25.         
  26.         
  27.         
  28.         
  29.         
  30.         
  31.                                   Copyright 1990, 1991 By
  32.         
  33.                              Software Technology International
  34.         
  35.                                     All Rights Reserved
  36.         
  37.         
  38.         
  39.         
  40.         
  41.         
  42.         
  43.         
  44.         
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.                                             -1- 
  67.                                           NOTICE
  68.                                           ------
  69.         
  70.         
  71.                      All parts of this manual and the accompanying  soft-
  72.                   ware  are  copyrighted material. You, as  a  registered 
  73.                   user, are granted permission to make as many copies  of 
  74.                   the  software, or manual, as you wish, as long as  they 
  75.                   are for your personal use. You may not copy this  soft-
  76.                   ware,  or  manual,  in any form  whatsoever  for  usage 
  77.                   outside of your personal use. This includes, but is not 
  78.                   limited  to, duplication of the disk, the files on  the 
  79.                   disk or the manual, by manual or electronic means.
  80.         
  81.         
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.                                             -2-
  133.                                   DESCRIPTION OF THE UNIT
  134.                                   -----------------------
  135.         
  136.                      This  unit  is a very simple unit for  Turbo  Pascal 
  137.                   Version  5.0.  This unit redirects the  standard  error 
  138.                   processing and passes it to the procedure in this unit. 
  139.                   This unit then transfers the error codes into a reason-
  140.                   ably understandable error message. This is much  better 
  141.                   than  the cryptic RUNTIME ERROR XXX AT  XXXX:XXXX  that 
  142.                   Turbo Pascal provides.
  143.         
  144.                      This  unit can also serve as a starting point for  a 
  145.                   more  complicated error processing system. At  the  mo-
  146.                   ment, when an error occurs, the program halts. By using 
  147.                   this unit as a base, you can create a unit that handles 
  148.                   all  errors,  produces a message, and then jumps  to  a 
  149.                   safe place in the program.
  150.         
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.                                             -3-
  200.  
  201.  
  202.