Hallo alzaimar,
da hast Du Recht - das ist anscheinend nicht ohne Weiteres zu lösen.
Ich habe nun mal ein ganz einfache Beispiel kreiert
Sind nur 5 Edits. Die ersten 4 enthalten die Strings
Im Edit5 kommt das Ergebnis. Ich bräuchte lediglich noch den String von Edit2 und Edit3
Schade, das es da keine Möglichkeit gibt.
ciao
LingNeu
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var cmp,pro,typ,txt: string;
begin
cmp := Edit1.Text ; //'Edit5'
pro := Edit2.Text ; //'Text'
typ := Edit3.Text ; //'TEdit'
txt := Edit4.Text ; //'eins'
(FindComponent(cmp) as TEdit).Text := txt; //Ausgabe erfolgt in Edit5
// so wäre es ideal ...
//(FindComponent(cmp) as typ).pro := txt;
end;