Use MessageBox.Show overloads such as:
public static DialogResult Show( string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon )
transmission of the title text in the title and the icon in the icon, for example.
MessageBox.Show("Oh noes!", "My Application", MessageBoxButtons.OK, MessageBoxIcon.Error);
itowlson
source share