Hallo,
mit
Delphi-Quellcode:
procedure erzeugeForm2;
begin
Form2:=TForm.create(Form1);
Form2.Top:=screen.Width div 2;
Form2.Left:=Screen.Height div 2;
Form2.Width:=500;
Form2.Height:=400;
Button:=TButton.create(Form2);
Button.parent:=Form2;
Button.Top:=Form2.Height-30;
Button.Left:=10;
Button.Anchors:=[akLeft,akBottom];
Button.Width:=90;
Button.caption:='&Zwischenablage';
.
.
.
end;
erzeuge ich Form2 und Button.
Wie kann ich jetzt das Form2-ReSize-Ereignis bzw. das Button-OnClick-Ereignis des Buttons ansprechen?
Vielen Dank!
Gruß, Linkat