J
John Bailo
I have a main form that can launch several subforms.
Both the main form remains active when the subform is visible.
I want to prevent the user from launching multiple copies of the subform.
How can I do this?
Here's my code for launching one of the subforms:
frmMove Move = new frmMove(this,
treeView1.SelectedNode);
Move.Show();
Move.Activate();
Move.TopMost=true;
Both the main form remains active when the subform is visible.
I want to prevent the user from launching multiple copies of the subform.
How can I do this?
Here's my code for launching one of the subforms:
frmMove Move = new frmMove(this,
treeView1.SelectedNode);
Move.Show();
Move.Activate();
Move.TopMost=true;