MsgBox

  • Thread starter Thread starter A.M
  • Start date Start date
A

A.M

Hi,

It seems C# has MsgBox function in different allias name.
How can i call VB.NET MsgBox from C# ?

Thanks,
Ali
 
Ali,

You will want to use the MessageBox class in the System.Windows.Forms
namespace, calling the Show method to show the messagebox and get the
results.

Hope this helps.
 
-----Original Message-----
Hi,

It seems C# has MsgBox function in different allias name.
How can i call VB.NET MsgBox from C# ?

Thanks,
Ali


.

Not entirely sure I get your question, but I think you
want MessageBox.Show();
 
Back
Top