Autor Beitrag
Freeman_6
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 19



BeitragVerfasst: Mi 20.10.04 00:32 
Hi,

gibt es eine funktion, mit der man festellen kann, ob eine form schon besteht oder nicht?

mfg Freeman_6
Popov
ontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic starofftopic star
Beiträge: 1655
Erhaltene Danke: 13

WinXP Prof.
Bei Kleinigkeiten D3Pro, bei größeren Sachen D6Pro oder D7
BeitragVerfasst: Mi 20.10.04 00:39 
ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
procedure TForm1.Button1Click(Sender: TObject);
var
  i: Integer;
  c: TComponent;
begin
  for i := 0 to Application.ComponentCount - 1 do
  begin
    c := Application.Components[i];
    if c is TForm then ShowMessage(TForm(c).Name);
  end;
end;

_________________
Popov