Hi,
Maybe this is a simple question...
I want to open a 2nd form using a load click button. I already did it:
private void loadbtt_Click(object sender, EventArgs e)
{
ScndForm.Show();
ScndForm.Update();
// Rest of the instructions for load button
}
The problem is that it is only showing the 2nd form and not waiting if it is closed or if the operation inside it had any error, it just go to the rest of the instructions in the load button section...
I want to do it without a Global Variable, should is possible?