![]() |
Problem mit MessageboxTimeout
WinXP - SP3, Delphi2009 Enterprise
Hallo, ich hoffe, ihr könnt mir helfen! Ich wollte MessageBoxTimeout ausprobieren, habe den Sourcecode in mein Programm übertragen - funktioniert soweit alles (fast) gut. Ich bekomme keine Fehlermeldungen beim Compilieren, die Messagebox "verschwindet" nach der eingestellten Zeit, allerdings werden weder der Text für lpCaption noch für lpText richtig dargestellt. Klartext: vom Text wird nur das 1. Zeichen dargestellt, der Rest nicht.
Delphi-Quellcode:
Statt MessageBoxTimeout Test erscheint ein "M", statt Test a timeout of 5 seconds nur das "T".// Define a MessageBox with a Yes and No button and a timeout of // 5 seconds iFlags := MB_YESNO or MB_SETFOREGROUND or MB_SYSTEMMODAL or MB_ICONINFORMATION; iResult := MessageBoxTimeout(Application.Handle, 'Test a timeout of 5 seconds.', 'MessageBoxTimeout Test', iFlags, 0, 5000); Könnt ihr mir bitte weiterhelfen und sagen, wo ich den Fehler mache. Vielen Dank für eure Mühe Ines |
AW: Problem mit MessageboxTimeout
Ein alltägliches Unicode-ANSI-Verständigungsproblem.
Du wirst die Parameter als Unicode übergeben, aber die ANSI-Version der API aufrufen. Der Compiler gibt wohl keine Warnungen aus? Zitat:
|
AW: Problem mit MessageboxTimeout
Zitat:
|
AW: Problem mit MessageboxTimeout
Du kannst die im Netz kursierenden Deklarationen anpassen
Delphi-Quellcode:
{$IFDEF UNICODE}
function MessageBoxTimeOut(hWnd: HWND; lpText: PChar; lpCaption: PChar;uType: UINT; wLanguageId: WORD; dwMilliseconds: DWORD): Integer; stdcall;external user32 name 'MessageBoxTimeoutW'; {$ELSE} function MessageBoxTimeOut(hWnd: HWND; lpText: PChar; lpCaption: PChar;uType: UINT; wLanguageId: WORD; dwMilliseconds: DWORD): Integer; stdcall;external user32 name 'MessageBoxTimeoutA'; {$ENDIF} function MessageBoxTimeOutA(hWnd: HWND; lpText: PChar; lpCaption: PChar;uType: UINT; wLanguageId: WORD; dwMilliseconds: DWORD): Integer; stdcall;external user32 name 'MessageBoxTimeoutA'; function MessageBoxTimeOutW(hWnd: HWND; lpText: PWideChar; lpCaption: PWideChar;uType: UINT; wLanguageId: WORD; dwMilliseconds: DWORD): Integer; stdcall; external user32 name 'MessageBoxTimeoutW'; |
AW: Problem mit MessageboxTimeout
Geht auch etwas kürzer und vor allem korrekter (bei der Ansi-Variante muss das auch PAnsiChar sein):
Delphi-Quellcode:
function MessageBoxTimeOut(hWnd: hWnd; lpText: PChar; lpCaption: PChar;
uType: UINT; wLanguageId: WORD; dwMilliseconds: DWORD): Integer; stdcall; external user32 name {$IFDEF UNICODE}'MessageBoxTimeoutW'{$ELSE}'MessageBoxTimeoutA'{$ENDIF}; function MessageBoxTimeOutA(hWnd: hWnd; lpText: PAnsiChar; lpCaption: PAnsiChar; uType: UINT; wLanguageId: WORD; dwMilliseconds: DWORD): Integer; stdcall; external user32 name 'MessageBoxTimeoutA'; function MessageBoxTimeOutW(hWnd: hWnd; lpText: PWideChar; lpCaption: PWideChar; uType: UINT; wLanguageId: WORD; dwMilliseconds: DWORD): Integer; stdcall; external user32 name 'MessageBoxTimeoutW'; |
AW: Problem mit MessageboxTimeout
Von hier habe ich den SourceCode:
![]() Zitat:
0 Hinweise 0 Warnungen Sonst hätte ich nicht behauptet, der Compiler läuft anstandslos durch! @DeddyH + Bummi: Vielen Dank, jetzt funktionierts! Ihr habt mir wirklich sehr geholfen. Ines |
AW: Problem mit MessageboxTimeout
noch kürzer
Delphi-Quellcode:
Man kann es sogar verpascalen. :roll: (wenn man weiß wie die Strings intern arbeiten)
const LibLang = {$IFDEF UNICODE}'W'{$ELSE}'A'{$ENDIF}; // wenn man das öfters mal braucht
function MessageBoxTimeOut(hWnd: HWND; lpText, lpCaption: PChar; uType: UINT; wLanguageId: WORD; dwMilliseconds: DWORD): Integer; stdcall; external user32 name 'MessageBoxTimeout' + LibLang; function MessageBoxTimeOutA(hWnd: HWND; lpText, lpCaption: PAnsiChar; uType: UINT; wLanguageId: WORD; dwMilliseconds: DWORD): Integer; stdcall; external user32; function MessageBoxTimeOutW(hWnd: HWND; lpText, lpCaption: PWideChar; uType: UINT; wLanguageId: WORD; dwMilliseconds: DWORD): Integer; stdcall; external user32;
Delphi-Quellcode:
function MessageBoxTimeOut(OwnerWindow: HWND; const Text, Caption: string;
MType: LongWord; LanguageID: Word; Milliseconds: LongWord): Integer; stdcall; external user32 name 'MessageBoxTimeout' + LibLang; function MessageBoxTimeOutA(OwnerWindow: HWND; const Text, Caption: AnsiString; MType: LongWord; LanguageID: Word; Milliseconds: LongWord): Integer; stdcall; external user32; function MessageBoxTimeOutW(OwnerWindow: HWND; const Text, Caption: {$IFDEF UNICODE}UnicodeString{$ELSE}WideString{$ENDIF}; MType: LongWord; LanguageID: Word; Milliseconds: LongWord): Integer; stdcall; external user32; Zitat:
PChar und dann ein ...A :wall: ![]() |
AW: Problem mit MessageboxTimeout
@himitsu
Den ersten Quellcode werde ich ausprobieren. Danke :-D |
Alle Zeitangaben in WEZ +1. Es ist jetzt 09:55 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