Display the standard Windows message box
[C++]
static int WinMessageBox(
LPCSTR lpText,
LPCSTR lpCaption,
UINT uType
);
A null-terminated string that will be displayed in the message box.
A null-terminated string that will be displayed in title of the message box.
Various MB_* flags, specifying the buttons, icons and behavior of the message box.
See the documention for the Win32 API function ::MessageBox().
This function calls the the Win32 API function MessageBox().
This offers more flexibility than the Excel message box
(see CXllApp::XlMessageBox),
and is generally preferred to it. See the documention for the Win32 API function ::MessageBox().
Header: xllplus.h