Delphi-PRAXiS
Seite 2 von 2     12   

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Delphi Exception bei writeln (https://www.delphipraxis.net/125640-exception-bei-writeln.html)

Sir Rufo 9. Dez 2008 20:19

Re: Exception bei writeln
 
Also dann so ...
Delphi-Quellcode:
procedure TForm1.FormShow(Sender: TObject);
var
  f: TextFile;
begin
  try
    AssignFile(f, 'Test.txt');
    Rewrite(f);
    try
      WriteLn(f, 'blablabla');
    finally
      CloseFile(f);//das wird auf jeden Fall ausgeführt
    end;
  except
    on E: Exception do
      ShowMessage( 'Hier war ein Fehler!' );
  end;
end;


Alle Zeitangaben in WEZ +1. Es ist jetzt 05:45 Uhr.
Seite 2 von 2     12   

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz