vote up 0 vote down star

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?

flag

58% accept rate

2 Answers

vote up 5 vote down check

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

link|flag
Thank you Uwe ! It worked. – vas Aug 19 at 20:23
1  
just press Ctrl+Shift+C to add the method to the implementation section – Gerry Aug 20 at 3:26
vote up 3 vote down
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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.