Error : Implementation for method missing (Delphi Prism)
Posted
by Ilya
on Stack Overflow
See other posts from Stack Overflow
or by Ilya
Published on 2010-04-30T19:15:39Z
Indexed on
2010/04/30
19:17 UTC
Read the original article
Hit count: 262
I wrote my method: LangChange
type
MainForm = partial class(System.Windows.Forms.Form)
private
...
method LangChange();
protected
method Dispose(disposing: Boolean); override;
public
constructor;
end;
implementation
...
method LangChange();
begin
...
end;
However,I have an error
Error 1 (PE33) Implementation for method "Compiler.MainForm.LangChange" missing
What is wrong?Help please!
© Stack Overflow or respective owner