Hallo
du hast n Rechtschreibfehler, Length schreibt man mit "th" nicht mit
"ht" und ausserdem müsste das glaube ich so aussehen:
HilfeP := SetLength(((Application.MainForm.FindComponent('PlLab' + Inttostr(i)) as TLabel).caption),Lenght((Application.MainForm.FindComponent('PlLab' + Inttostr(i)) as TLabel).caption) - 4);
kannste glaube ich besser so machen,
Delphi-Quellcode:
Var
_str: String;
begin
_Str := (Application.MainForm.FindComponent('PlLab' + Inttostr(i)) as TLabel).caption;
SetLength(_str, Length(_Str) - 4);
end;
hab das nicht getestet sollte aber so gehen, denke ich jedenfalls
mfg, Mika