Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

No Text In Messagebox

I put the following (MS Example) code in a button click:

Dim Message As String = "You did not enter a server name. Cancel this operation?"
Dim Caption As String = "No Server Name Specified"
Dim Buttons As Integer = MessageBoxButtons.YesNo

Dim Result As DialogResult

'Displays a MessageBox using the Question icon and specifying the No button as the default.

Result = MessageBox.Show(Me, Message, Caption, MessageBoxButtons.YesNo, _
MessageBoxIcon.Question, MessageBoxDefaultButton.Button1, MessageBoxOptions.RightAlign)

The message box displays and it has a caption. There is no message displaying and no captions on the buttons. Am I missing a system font?
[771 byte] By [joewmaki] at [2007-11-11 6:54:16]
# 1 Re: No Text In Messagebox
joewmaki,

You are running McAfee VirusScan Enterprise 8, right?

This is a known bug that McAfee's web site has a patch for.

Kerry Moorman
kmoorman at 2007-11-11 21:49:54 >
# 2 Re: No Text In Messagebox
joewmaki,

You are running McAfee VirusScan Enterprise 8, right?

This is a known bug that McAfee's web site has a patch for.

Kerry Moorman

Right you are Kerry.

Thanks!
joewmaki at 2007-11-11 21:51:00 >