Ejemplo n.º 1
0
        private void Mostrar_CC()
        {
            DataTable Dt = new DataTable();

            Datos_CC Funcion = new Datos_CC();

            Funcion.Mostrar_CC(ref Dt);

            this.DGV_CC.DataSource = Dt;

            Logica_DataTable.MultiLinea(ref this.DGV_CC);
        }
Ejemplo n.º 2
0
        private void Buscar_CC()
        {
            DataTable Dt = new DataTable();

            Datos_CC Funcion = new Datos_CC();

            Funcion.Buscar_CC(ref Dt, this.txt_CC.Text);

            this.DGV_CC.DataSource = Dt;

            Logica_DataTable.MultiLinea(ref this.DGV_CC);
        }
Ejemplo n.º 3
0
        private void Mostrar_Supervisor()
        {
            DataTable Dt = new DataTable();

            Datos_Super Funcion = new Datos_Super();

            Funcion.Mostrar_Supervisor(ref Dt);

            this.DGV_Supervisor.DataSource = Dt;

            Logica_DataTable.MultiLinea(ref DGV_Supervisor);
        }
Ejemplo n.º 4
0
        private void Buscar_Supervisor()
        {
            DataTable Dt = new DataTable();

            Datos_Super Funcion = new Datos_Super();

            Funcion.Buscar_Supervisor(ref Dt, this.txt_Nombre.Text, this.txt_Apellido.Text);

            this.DGV_Supervisor.DataSource = Dt;

            Logica_DataTable.MultiLinea(ref this.DGV_Supervisor);
        }
Ejemplo n.º 5
0
        private void Menu_Personal_Load(object sender, EventArgs e)
        {
            this.TLP_Botones.Controls.Remove(this.btn_Modificar);

            this.Pnl_RegistroSup.Visible = true;

            this.TLP_Botones.Controls.Remove(this.btn_Modificar);

            Logica_DataTable.CentrarControl(this.Pnl_RegistroSup);

            Limpiar();

            Cargar_Listados();
        }
Ejemplo n.º 6
0
 private void txt_Codigo_KeyPress(object sender, KeyPressEventArgs e)
 {
     Logica_DataTable.Enteros(this.txt_Codigo, e);
 }