0

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!

Arioch 'The
  • 15,799
  • 35
  • 62
Ilya Blokh
  • 11,923
  • 11
  • 52
  • 84

1 Answers1

3

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

method MainForm.LangChange();
begin
end;
RRUZ
  • 134,889
  • 20
  • 356
  • 483
Mosh
  • 121
  • 2