H
Hans Kamp
How do I use an MsgBox in C#Builder?
The following code:
private void button1_Click(object sender, System.EventArgs e)
{
MsgBox("Blablabla");
}
causes the message (translated from Dutch):
[C# Error] WinForm.cs(89): The name MsgBox doesn't exist in the class or
namespace ShowName.WinForm
How do I correct the code? After clicking on the button button1, I want to
see a message box with the text "Blablabla".
Why is the error message in Dutch (I have Windows XP Home in Dutch)?
Hans Kamp.
The following code:
private void button1_Click(object sender, System.EventArgs e)
{
MsgBox("Blablabla");
}
causes the message (translated from Dutch):
[C# Error] WinForm.cs(89): The name MsgBox doesn't exist in the class or
namespace ShowName.WinForm
How do I correct the code? After clicking on the button button1, I want to
see a message box with the text "Blablabla".
Why is the error message in Dutch (I have Windows XP Home in Dutch)?
Hans Kamp.