![]() |
GetLastError Liste?
Moin,
gint es eine Übersicht über alle Fehlermeldungen? Wäre nett, wenn einer einen Link kennt, denn Google spuckt nicht viel aus. Danke |
Re: GetLastError Liste?
Moin!
Ehrliche Frage: Wozu? Du kannst jede GetLastError() und IOError Fehlernummer mit SysErrorMessage() in einen String verwandeln und ich hoffe und vermute mal, das sich damit vielleicht die Frage erledigt hat. Wenn nicht, die MSDN hat eine komplette Liste: ![]() MfG Muetze1 |
Re: GetLastError Liste?
@daywalker299:
Zitat:
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var J: Cardinal; S: String; begin with TStringList.Create do begin try J := 0; while J < High(Cardinal) do begin S := SysErrorMessage(J); if Length(S) > 0 then Add(IntToStr(J) + ' - ' + S); Inc(J); end; SaveToFile('C:\WinAPI Fehlercode.txt'); finally Free; end; end; end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 15:27 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz