private void BackBtn_Click(object sender, EventArgs e) { Hide(); PopulatedClients pc = new PopulatedClients(); pc.Show(); }
private void populatesClientsToolStripMenuItem_Click(object sender, EventArgs e) { if (pc == null) { pc = new PopulatedClients(); pc.MdiParent = this; pc.Dock = DockStyle.Fill; pc.Show(); } else { pc.Show(); pc.Activate(); } }