Registriert seit: 18. Feb 2006
Ort: Stolberg
2.227 Beiträge
Delphi 2010 Professional
|
Re: [TStringlist] Position => Zeile
5. Feb 2009, 19:42
Hallo Frank,
du könntest es mit dieser Funktion versuchen:
Delphi-Quellcode:
function LineIndexFromCharIndex (
const aString : string;
const aCharIndex : Integer
) : Integer;
begin
with TMemo.CreateParented(HWND(HWND_MESSAGE)) do
try
Text := aString;
Result := SendMessage( Handle, EM_LINEFROMCHAR, aCharIndex, 0);
finally
Free;
end;
end;
Gruß Hawkeye
|