Fassen wir alles zusammen, dann ergibt sich
Delphi-Quellcode:
procedure TfMain.Button1Click(Sender: TObject);
var
In_A: string;
slShow: TStringList;
begin
In_A := '';
slShow := nil;
try
if In_A = '' then
exit;
slShow := TStringList.Create;
finally
slShow.Free;
end;
end;
So sieht's jetzt bei mir auch aus!
Sollte es hier nicht eine Compilerwarnung geben?
Die Zeile "slShow := TStringList.Create;" sollte vor dem try stehen.
Windows Vista - Eine neue Erfahrung in Fehlern.