MessageBox blank

G

Guest

I have a very basic application to test a problem
The only code added to a C# Windows Form Application is:

MessageBox.Show("Test Message", "Test Caption");

The caption shows but the message is blank and so is the button.
Any ideas?
WinXP SP2
Visual Studio 2003 (7.1.3088)
..Net Framework 1.1 SP1 (1.1.4322 SP1)
Thanks
Ian
 
Y

Yonas Hagos

You have many options of doing it. Here is a basic one and it works fine.

MessageBox.Show("Test Message","Test Caption",MessageBoxButtons.OK) ;

Yonas
 
G

Guest

It seems McAfee Version 8 is the culprit - disable buffer overrun and all is
okay again.

Go figure!!
 
M

Marc Jennings

Ianhoc - I have been tearing my hair out over the exact same
problem!!! Can you give me a little more detail about how you solved
it, please?
 
G

Guest

Thanks for posting the hotfix info Marc - unfortunately I couldn't find it on
McAfee's website. Maybe it is because we don't have a Support contract.

ian
 
M

Marc Jennings

Unfortunately, this is a support-only patch. However, McAfee are
aware of the issue, and I would imagine they will roll the fix into
future service releases.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Installing VS 2003 on another computer 4
itemsend 0
Messagebox text not visible 2
Toolbar Too Big 2
help: messagebox-like delay? 2
System.Management 3
.net framework 1.1.4322 2
MessageBox.Show no longer works... 1

Top