Пример #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();
            }
        }
Пример #2
0
        private void btn_editar_Click(object sender, EventArgs e)
        {
            try
            {
                Modificar_encabezado_muestreo me = new Modificar_encabezado_muestreo();
                me.txt_id_muestreo.Text = Convert.ToString(dgv_muestreo.CurrentRow.Cells[0].Value);

                me.txt_responsable.Text = Convert.ToString(dgv_muestreo.CurrentRow.Cells[2].Value);

                OdbcConnection con = Conexion.ConexionPermisos();
                me.Show();
            }
            catch
            {
                MessageBox.Show("No existen registros que modificar");
            }
        }