Exemplo n.º 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();
            }
        }
Exemplo n.º 2
0
        private void dgv_muestreo_DoubleClick(object sender, EventArgs e)
        {
            try
            {
                Detalle_muestreo mte = new Detalle_muestreo();

                string id_muestreo = Convert.ToString(dgv_muestreo.CurrentRow.Cells[0].Value);
                string fecha       = Convert.ToString(dgv_muestreo.CurrentRow.Cells[1].Value);
                string responsable = Convert.ToString(dgv_muestreo.CurrentRow.Cells[2].Value);

                mte.txt_ident.Text = id_muestreo;
                mte.textBox3.Text  = fecha;
                mte.textBox4.Text  = responsable;
                //txt_id_empresa.Text = id_empresa;


                mte.Show();
            }
            catch
            {
                MessageBox.Show("No existen registros que modificar");
            }
        }