Registriert seit: 29. Mai 2002
37.621 Beiträge
Delphi 2006 Professional
|
Re: [gelöst] MessageDlg Bilder in noVCL-Dialog
3. Okt 2009, 14:05
Ergänzung:
Mit der API-Funktion MessageBoxIndirect kannst du dein eigens Icon aus einer Ressource darstellen:
Delphi-Quellcode:
function MsgBoxIndirect(Text, Caption: string; Flags, IDIcon: DWORD): LRESULT;
var
MsgInfo : TMsgBoxParams;
begin
ZeroMemory(@MsgInfo, sizeof(TMsgBoxParams));
MsgInfo.cbSize := SizeOf(TMsgBoxParams);
MsgInfo.hwndOwner := FHandle;
MsgInfo.hInstance := HInstance
MsgInfo.lpszText := @Text[1];
MsgInfo.lpszCaption := @Caption[1];
MsgInfo.dwStyle := MB_USERICON or Flags;
MsgInfo.lpszIcon := MAKEINTRESOURCE(IDICON);
result := MessageBoxIndirect(@MsgInfo);
end;
Michael Ein Teil meines Codes würde euch verunsichern.
|