W
Wade
Hi all,
I have the following code:
string message = "You have just completed this section. Fill
it with a background color?";
string caption = "Fill Section";
MessageBoxButtons buttons = MessageBoxButtons.YesNo;
DialogResult result;
result = MessageBox.Show(message, caption, buttons,
MessageBoxIcon.Question, MessageBoxDefaultButton.Button1);
if (result == DialogResult.Yes)
{
// do something
}
After the user clicks okay, the SIP keyboard icon disappears. What's up
with that?
I've searched these groups, and the standard response is "add a main menu".
Well, I have a main menu. And, as I'm not using ShowDialog to open another
form, but rather Messagebox.Show, there's no way to add a menu to the dialog
box.
Any one have any clues? This is very frustrating.
Thanks for your help!
Wade
I have the following code:
string message = "You have just completed this section. Fill
it with a background color?";
string caption = "Fill Section";
MessageBoxButtons buttons = MessageBoxButtons.YesNo;
DialogResult result;
result = MessageBox.Show(message, caption, buttons,
MessageBoxIcon.Question, MessageBoxDefaultButton.Button1);
if (result == DialogResult.Yes)
{
// do something
}
After the user clicks okay, the SIP keyboard icon disappears. What's up
with that?
I've searched these groups, and the standard response is "add a main menu".
Well, I have a main menu. And, as I'm not using ShowDialog to open another
form, but rather Messagebox.Show, there's no way to add a menu to the dialog
box.
Any one have any clues? This is very frustrating.
Thanks for your help!
Wade