Exemplo n.º 1
0
        private void btnconfac_Click(object sender, RoutedEventArgs e)
        {
            ConsultaFactura frm = new ConsultaFactura();

            frm.Show();
            this.Close();
        }
Exemplo n.º 2
0
        private void facturasToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ConsultaFactura r = new ConsultaFactura();

            r.MdiParent = this;
            r.Show();
        }
Exemplo n.º 3
0
        private void consultaDeFacturaToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ConsultaFactura consultaFactura = new ConsultaFactura();

            consultaFactura.Show();
            consultaFactura.MdiParent = this;
        }
Exemplo n.º 4
0
        private void VentasButton_Click(object sender, EventArgs e)
        {
            ConsultaFactura consulta = new ConsultaFactura();

            consulta.Show();
        }