The layouts of the MessageBox dialogs in my application are not right. The text overlaps the icon. Here's an example:

Name:  Image #1.png
Views: 581
Size:  19.6 KB

The code that creates this dialog is pretty simple:

Code:
strMSG = "No SyncBackPro operation is necessary today."
MessageBox.Show(strMSG, Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Information)
I'm stumped as to why the layout is not right and would appreciate any suggestions to correct this.