Registriert seit: 27. Apr 2003
Ort: Bad Honnef
1.644 Beiträge
Delphi 2009 Professional
|
Re: hmm, ich versteh Findcomponent nicht
25. Feb 2004, 21:55
Hallo,
versuch es mal so
Delphi-Quellcode:
...
var
aComponent : TComponent;
begin
For iCnt:=1 to 6 do
begin
aComponent:=FindComponent('Edit1'+IntToStr(iCnt));
If aComponent is TEdit then
ShowMessage(TEdit(aComponent).Text);
end;
end;
I come from outer space to save the human race
|