Einzelnen Beitrag anzeigen

Delphi.Narium

Registriert seit: 27. Nov 2017
2.415 Beiträge
 
Delphi 7 Professional
 
#4

AW: Suche nach einem Formtyp in einer ObjectListe von Forms

  Alt 6. Okt 2021, 14:25
Funktioniert sowas:
Delphi-Quellcode:
function TPForm.FormtypeExisits(anyForm: TObject): boolean;
var
  i: Integer;
begin
  Result := False;
  for i := 0 to AFormList.Count - 1 do
  begin
    if (AFormList.Items[i].ClassType = anyForm.ClassType) then
      Result := True;
  end;
end;
  Mit Zitat antworten Zitat