G
Guest
In VB, when using the form:
MessageBox.Show("some text")
The result is a small blank dialog with a blank button.
If I specify the full set of parameters for the MessageBox.Show using the
following syntax:
MessageBox.Show("some text", "caption", MessageBoxButtons.OK,
MessageBoxIcon.None, MessageBoxDefaultButton.Button1,
MessageBoxOptions.DefaultDesktopOnly)
The messagebox is displayed as I would expect.
Documentation seems to indicate that the short form is OK, but I don't
understand correctly.
Scott Vesey
MessageBox.Show("some text")
The result is a small blank dialog with a blank button.
If I specify the full set of parameters for the MessageBox.Show using the
following syntax:
MessageBox.Show("some text", "caption", MessageBoxButtons.OK,
MessageBoxIcon.None, MessageBoxDefaultButton.Button1,
MessageBoxOptions.DefaultDesktopOnly)
The messagebox is displayed as I would expect.
Documentation seems to indicate that the short form is OK, but I don't
understand correctly.
Scott Vesey