private void button2_Click(object sender, EventArgs e)
        {
            Form formularioSiguiente = new AbmFactura.AltaDeItemFactura();

            formularioSiguiente.Visible = true;
            this.Visible = false;
        }
Ejemplo n.º 2
0
        private void botonIngresarItem_Click(object sender, EventArgs e)
        {
            Form formularioSiguiente = new AbmFactura.AltaDeItemFactura();

            this.Hide();
            formularioSiguiente.ShowDialog();
            this.Show();
        }