P
PiotrKolodziej
Hi
Iam running form2 from form1.
But as it was in many my previous applications, now the form2 doesn't
overlapp form1. It means that i can select form1 without even closing form2.
Here's sample code:
if (MessageBox.Show("Button is not recognized. Would you
like to add function to this button?", "New Button detected",
MessageBoxButtons.YesNo,
MessageBoxIcon.Information) == DialogResult.Yes)
{
Form2 form2 = new Form2();
form2.Button = "b" + t;
form2.ShowDialog();
Fill_DataGrid();
}
Iam running form2 from form1.
But as it was in many my previous applications, now the form2 doesn't
overlapp form1. It means that i can select form1 without even closing form2.
Here's sample code:
if (MessageBox.Show("Button is not recognized. Would you
like to add function to this button?", "New Button detected",
MessageBoxButtons.YesNo,
MessageBoxIcon.Information) == DialogResult.Yes)
{
Form2 form2 = new Form2();
form2.Button = "b" + t;
form2.ShowDialog();
Fill_DataGrid();
}