Exemplo 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);
        }
Exemplo n.º 2
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);
        }
Exemplo n.º 3
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);
        }
Exemplo 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);
        }