![]() |
MessageBoxIndirect eigenes Symbol
Ich wollte mit MessageBoxIndirect eine MessageBox mit eigenem Symbol machen, alles funktioniert, nur es kommt nicht mein Symbol...
Delphi-Quellcode:
Das Icon MAINICON ist in der Anwendung vorhanden, hab extra mit dem ResourceHacker nachgeguckt, müsste also doch eigentlich alles so in Ordnung sein...
var
params: MSGBOXPARAMS; begin with params do begin cbSize := SizeOf(TMsgBoxParams); dwContextHelpId := 0; dwLanguageId := LANG_NEUTRAL; dwStyle := MB_OK or MB_USERICON; hInstance := GetWindowLong(Handle, GWL_HINSTANCE); hwndOwner := Handle; lpfnMsgBoxCallback := nil; lpszCaption := 'blubb'; lpszIcon := 'MAINICON'; lpszText := 'blubb'; end; MessageBoxIndirect(params); end; Was mach ich da falsch? |
Re: MessageBoxIndirect eigenes Symbol
Du musst LoadRessource('MainIcon') oder so ähnlich verwenden ...
|
Re: MessageBoxIndirect eigenes Symbol
Ja, so ähnlich :mrgreen:
Hab' Müll verzapft. :wall: |
Re: MessageBoxIndirect eigenes Symbol
Wenn du dein Icon über einen Index einbindest (Mainicon ist meine ich 1), dann kannst du das verwenden:
Delphi-Quellcode:
Florian
function MyMessageBox(hWnd: HWND; Text, Caption: String; IconID: DWORD;
const Buttons: Cardinal = MB_OK): Integer; var MsgInfo: TMsgBoxParams; begin With MsgInfo do begin cbSize := SizeOf(TMsgBoxParams); dwContextHelpId := 0; dwLanguageId := LANG_NEUTRAL; dwStyle := Buttons or MB_USERICON or MB_APPLMODAL; hInstance := GetWindowLong(hWnd, GWL_HINSTANCE); hwndOwner := hWnd; lpfnMsgBoxCallback := nil; lpszCaption := @Caption[1]; lpszIcon := MAKEINTRESOURCE(IconID); lpszText := @Text[1]; end; Result := Integer(MessageBoxIndirect(MsgInfo)); end; |
Re: MessageBoxIndirect eigenes Symbol
Danke schonmal für die Hilfe, nur leider hat das alles nicht geklappt :(
Habs mit MAKEINTRESOURCE(1); und auch mit MAKEINTRESOURCE(0); versucht, ging beides nicht :( |
Alle Zeitangaben in WEZ +1. Es ist jetzt 12:54 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