Using Message Boxes

Typical Error Message Box


//1st string is message, 2nd string is box title.  Here's a classic error message usage:
catch (Exception^ e)
{
	MessageBox::Show(L"Comms Failed with the following error:\n" + e, L"Error", MessageBoxButtons::OK, MessageBoxIcon::Error);
}

(more…)