views:

618

answers:

2

getting an error while compiling .pas file "unsatisfied forward or external declaration :TxxxException.CheckSchemeFinMethodDAException." any idea what this error could imply? Does it mean that "CheckSchemeFinMethodDAException" was not called in all the concerned files?

+5  A: 

You have declared this method but didn't implement it.

Uwe Raabe
Thank you Uwe ! It worked.
vas
just press Ctrl+Shift+C to add the method to the implementation section
Gerry
+3  A: 
unit Unit1;

interface

type
  TMyClass = class
    procedure DeclaredProcedure;
  end;

implementation

end.

This yields the error you describe. The procedure DeclaredProcedure is declared (signature) but not defined (implementation part is empty).

You have to provide an implementation for the procedure.

Smasher