예제 #1
0
        private void dataGridView2_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            M_PRINCIPAL padre = new M_PRINCIPAL();
            DETALLE_DE_CONSULTA_DESCARGAS_Y_VISITAS VEN = new DETALLE_DE_CONSULTA_DESCARGAS_Y_VISITAS();

            VEN.groupBox1.Text            = "EMPRESA";
            VEN.lblnombreempresa.Text     = dataGridView2.CurrentRow.Cells["EMPRESA"].Value.ToString();
            VEN.DGVDATADETALLE.DataSource = ds.llenar_PERSOnal_x_codigo(Convert.ToInt32(dataGridView2.CurrentRow.Cells["CODIGO"].Value));
            VEN.MdiParent = this.ParentForm;
            VEN.Show();
        }
예제 #2
0
        private void txtclave_KeyPress(object sender, KeyPressEventArgs e)
        {
            if ((int)e.KeyChar == (int)Keys.Enter)
            {
                try
                {
                    String CLAVE = cmbusuario.SelectedValue.ToString();
                    if (txtclave.Text == "")
                    {
                        MessageBox.Show(this, "INGRESE CLAVE PARA CONTINUAR", VariablesGlobales.Titulo, MessageBoxButtons.OK, MessageBoxIcon.Error);
                        txtclave.Focus();
                    }
                    else if (txtclave.Text != CLAVE)
                    {
                        MessageBox.Show(this, "CLAVE INCORRECTA", VariablesGlobales.Titulo, MessageBoxButtons.OK, MessageBoxIcon.Error);
                        txtclave.Focus();
                    }
                    else
                    {
                        if (txtclave.Text == CLAVE)
                        {
                            M_PRINCIPAL M = new M_PRINCIPAL();
                            M.STNOMBRECOMPLETO.Text = "PERSONAL:" + usu.DEVUELVE_NOMBRE_COMPLETO(cmbusuario.Text);
                            M.TIPOUSUARIO           = usu.DEVUELVE_TIPO(cmbusuario.Text);
                            M.STCODIGO.Text         = cmbusuario.Text;
                            M.Show();

                            this.Hide(); M.Text = "SISTEMA DE GESTION-SUCURSAL CHICLAYO " + Application.ProductVersion + " AÑO DE GESTION:" + "2018";
                        }
                    }
                }
                catch (Exception EX)
                {
                    MessageBox.Show(EX.Message.ToString());
                }
            }
        }