I have a mdi form and there are so many child forms on the main menu, and I use such code to open child:
frmCustomers yeni = new frmCustomers();
if (GenelIslemler.formAuthCheck(yeni.Name.ToString()))
{
if (!IsOpen(yeni.Name.ToString()))
{
yeni.MdiParent = this;
yeni.WindowState = FormWindowState.Maximized;
yeni.Show();
}
}
else
{
MessageBox.Show("You dont have rights to access!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
but I want to write a method and just call form to that method like
openForm(frmCustomers);
and openForm method should be like this
openForm(Form frm) {...}
how can I do?