- unit uM;
- interface uses Forms, SysUtils;
- type
- TForm1 = class(TForm);
- M = class(TObject)
- public
- constructor Create(form : TForm1);
- end;
- implementation uses main; //Hier ist TForm1 definiert
- constructor M.Create(form : TForm1);
- begin
- end;
Von Cpp zu DelphiModerator: DGL-Team
|