Example #1
0
        private void contenedor_Load(object sender, EventArgs e)
        {
            Conexion.DSN = "prueba2";
            MdiClient Chld;

            inv_ini = null;
            //  rep_movs = null;
            np     = null;
            cat    = null;
            fm     = null;
            mar    = null;
            rstck  = null;
            bod    = null;
            fl     = null;
            gr     = null;
            dm     = null;
            dbp    = null;
            fmu    = null;
            mem    = null;
            mov    = null;
            devc   = null;
            doc    = null;
            exbod  = null;
            fac    = null;
            kar    = null;
            his    = null;
            crearu = null;
            app    = null;
            edi    = null;
            camb   = null;
            modap  = null;
            desh   = null;
            asper  = null;
            edper  = null;
            elper  = null;
            repcom = null;


            foreach (Control crtl in this.Controls)
            {
                try
                {
                    Chld           = (MdiClient)crtl;
                    Chld.BackColor = this.BackColor;
                }
                catch (InvalidCastException exe)
                { }
            }



            if (inv_ini == null)
            {
                inv_ini           = new FormInventarioInicio();
                inv_ini.MdiParent = this;

                inv_ini.FormClosed += new FormClosedEventHandler(FormInventarioInicio_FormCLosed);
                inv_ini.Show();
            }
        }
Example #2
0
        private void reporteDeVentasToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (mov == null)
            {
                mov           = new FormMovimientos();
                mov.MdiParent = this;

                mov.FormClosed += new FormClosedEventHandler(FormMovimientos_FormClosed);
                mov.Show();
            }
        }
Example #3
0
        private void btn_mov_Click(object sender, EventArgs e)
        {
            if (mov == null)
            {
                mov           = new FormMovimientos();
                mov.MdiParent = this;

                mov.FormClosed += new FormClosedEventHandler(FormMovimientos_FormClosed);
                mov.Show();
            }
        }
Example #4
0
 private void FormMovimientos_FormClosed(object sender, FormClosedEventArgs e)
 {
     mov = null;
 }