Group: Dialog Box - Library: user32
Creates, displays, and operates a message box. The message box contains application-defined message text and title, any icon, and any combination of predefined push buttons.
How to display a user-defined icon in the MessageBox dialog
int MessageBoxIndirect(
const LPMSGBOXPARAMS lpMsgBoxParams
); DECLARE INTEGER MessageBoxIndirect IN user32;
STRING @lpMsgBoxParams lpMsgBoxParams [in] Pointer to a MSGBOXPARAMS structure that contains information used to display the message box.
If the function succeeds, the return value is one of the predefined menu-item values.
Home