private void clientesToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            ConsultarCliente consultarCliente = new ConsultarCliente();

            consultarCliente.MdiParent = this;
            consultarCliente.Show();
        }
Example #2
0
        //Boton Consultar
        private void button1_Click(object sender, EventArgs e)
        {
            ConsultarCliente consultarCliente = new ConsultarCliente();

            consultarCliente.Show();
        }