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?
Thank you Uwe ! It worked.
vas
2009-08-19 20:23:44
just press Ctrl+Shift+C to add the method to the implementation section
Gerry
2009-08-20 03:26:12
+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
2009-08-19 18:07:37