I use the following code to construct a message box;


void CMainFrame::OnDialogsMessage()

{

MessageBox("Message", "Title", MB_ICONEXCLAMATION);

}


What other options besides MB_ICONEXCLAMATION are available for message boxes?

When I do a search for messagebox on MSDN I get a billion results, none of

which help.


Any response anyone can give me will be greatly appreciated.