... hab grad meinen Post oben noch editiert....
noch ein Tip für die häufige Nutzung:
Delphi-Quellcode:
function laden(Quelle : String) : String;
VAR
temp: String;
BEGIN
temp := copy(Quelle, pos('"', Quelle)+1, length(Quelle));
temp := copy(temp, 1, pos('"', temnp)-1);
result := temp;
END;
Aufruf z.B. mit
frmEditor.edtVor.text := laden(frmEditor.mConfig.Lines[30]);
... alles ungetestet!
SCRaT