Registriert seit: 5. Jan 2006
Ort: Saarland
174 Beiträge
Delphi 2007 Professional
|
Re: FindComponent findet Label nicht
30. Aug 2006, 09:35
Hallo,
Delphi-Quellcode:
var
c : TLabel;
begin
c := (FindComponent('A' + IntToStr(i)) as Tlabel
if C <> NIL then
....
Also bei mir funktioniert das so ...
Michael S.
|