Exemplo n.º 1
0
        private void BackBtn_Click(object sender, EventArgs e)
        {
            Hide();
            PopulatedClients pc = new PopulatedClients();

            pc.Show();
        }
Exemplo n.º 2
0
 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();
     }
 }