Forum: GUI-Design mit VCL / FireMonkey / Common Controls
Delphi
by Nogge,
19. Jul 2005
Ich bins noch mal^^
Ich habe jetzt eine weitere Variante zum dynamischen Erstellen von einer Form:
if (F_Options = nil) then
begin
F_Options:=TF_Options.Create(nil);
//F_Options.Name:='unique 1';
F_Options.Show;
end;
Forum: GUI-Design mit VCL / FireMonkey / Common Controls
Delphi
by Nogge,
27. Mai 2005
mmh, dann halt als Extra-Post^^
Ich habe es jetzt erst mal mit einem array of TForm versucht und dabei folgendes Problem entdeckt:
procedure TF_Session.DeleteArray(var a:array of TF_Session; Index:Integer);
begin
a:=a;
{ -- letze Form aus array entfernen -- }
FreeAndNil(a);
SetLength(a,Length(a)-1);
end;
Forum: GUI-Design mit VCL / FireMonkey / Common Controls
Delphi
by Nogge,
26. Mai 2005
D.h. deine Methode, Jens Schumann, funktioniert nicht so, wie das gern hätte^^ Ich werde mal schauen, ob ein "array of TForm" für meine Zwecke angebracht ist.
Forum: GUI-Design mit VCL / FireMonkey / Common Controls
Delphi
by Nogge,
26. Mai 2005
Hallo Community,
Ich habe mir eine dynamische Form lokal erstellt:
with TF_Session.Create(nil) do
begin
Panel1.Caption:=bla;
StatusIcon:=TIcon.Create;
try
IL_Icons.GetIcon(Index,icon);
I_Status.Picture.Icon:=icon;