Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 1015 Bytes

File metadata and controls

42 lines (28 loc) · 1015 Bytes

Home

Function name : MessageBoxIndirect

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.


Code examples:

How to display a user-defined icon in the MessageBox dialog

Declaration:

int MessageBoxIndirect(
	const LPMSGBOXPARAMS lpMsgBoxParams
);  

FoxPro declaration:

DECLARE INTEGER MessageBoxIndirect IN user32;
	STRING @lpMsgBoxParams  

Parameters:

lpMsgBoxParams [in] Pointer to a MSGBOXPARAMS structure that contains information used to display the message box.


Return value:

If the function succeeds, the return value is one of the predefined menu-item values.