Thema: Delphi MSI Logfile auswerten

Einzelnen Beitrag anzeigen

Benutzerbild von chaosben
chaosben

Registriert seit: 27. Apr 2005
Ort: Görlitz
1.358 Beiträge
 
Delphi XE2 Professional
 
#2

Re: MSI Logfile auswerten

  Alt 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)
  Mit Zitat antworten Zitat