Hallo,
irgendwie steck ich grad fest:
Ich hab eine Form erzeugt, die auf Knopfdruck erstellt wird:
Delphi-Quellcode:
Form1:
unit unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 =
class(TForm)
Button1: TButton;
...
dann im hauptfenster meines Projekts will ich diese Form mehrmals aufrufen, wie kann man das machen:
Eine Instanz erstelle ich so:
Delphi-Quellcode:
Form1:= TForm.Create(nil);
Form1.Left:= pos.X; Form1.Top:= pos.Y;
Form1.ShowModal;
Form1.Free;
Wie könnt ich das machen?