I want to open the same form, without having to open several more by clicking on my toolStripMenuItem2
or any other button I have my following code: '
private void notasDeEntradaToolStripMenuItem_Click(object sender, EventArgs e)
{
frmcontrol log = new frmcontrol();
log.MdiParent = this;
log.Show();
}
I do not want to use the ShowDialog
because I know that it will only open the frmcontrol
but it will not let me perform the other tasks.
(I just want to show the same form that is already open) I hope you can help me or understand me.