private void btnClientes_Click(object sender, EventArgs e)
        {
            this.Hide();
            InsertarCliente iC = new InsertarCliente();

            iC.Closed += (s, args) => this.Close();
            iC.Show();
        }
Exemple #2
0
        private void btnConsultar_Click(object sender, EventArgs e)
        {
            this.Hide();
            InsertarCliente inc = new InsertarCliente();

            inc.Closed += (s, args) => this.Close();
            inc.Show();
        }