[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 Error 73               Undefined Forward Procedure(s)                pp 323

 Source:  Compiler

 Cause:   Body of forward procedure has never been declared.

 Remedy:  Use ^Q^F to search for each forward reference.  Search first
          for the keyword forward and note the procedure name.
          Then search for a matching procedure body for each forward
          delcaration.


 ----------------------------------------------------------------------------


 Example:
       Procedure Fwd ; Forward;     { Declare this procedure as forward    }
       Procedure Test;              { Test calls Fwd before it is declared }
         Begin
         Fwd;                       { Call the forward declared procedure  }
         End;

       Procedure Fxd;               { Forward declaration is mis-spelled   }
         Begin
         End;


       BEGIN                        { Error 73 points here                 }
       END.

This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson