Eli Blokh
Eli Blokh

Reputation: 12293

Error : Implementation for method missing (Delphi Prism)

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!

Upvotes: 0

Views: 233

Answers (1)

Mosh
Mosh

Reputation: 121

LangChange is a method of the class MainForm so the implementation of the method should be

method MainForm.LangChange();
begin
end;

Upvotes: 3

Related Questions