Registriert seit: 27. Apr 2005
Ort: Görlitz
1.358 Beiträge
Delphi XE2 Professional
|
Re: MSI Logfile auswerten
13. Dez 2005, 11:41
Wie wärs mit einem smarten
Delphi-Quellcode:
var
SL :TStrings
idx : Integer;
begin
SL:=TStringList.Create;
Sl.LoadFromFile('Test.txt');
for idx:=0 to sl.Count-1 do
Auswertung(sl[idx]);
end;
Benjamin Schwarze If I have seen further it is by standing on the shoulders of Giants. (Isaac Newton)
|