Exemple #1
0
        private void dgvGrid_DoubleClick(object sender, EventArgs e)
        {
            DataGridViewRow seleccionada = dgvGrid.SelectedRows[0];
            int             pos          = dgvGrid.Rows.IndexOf(seleccionada);

            edit_indx = pos;
            Actividades act = Actividad[pos];

            txtIDACT.Text      = act.ID_Actividad;
            txtNombreACT.Text  = act.Nombre_Actividad;
            txtDocenteACT.Text = act.Docente;
            txtGrupoACT.Text   = act.Grupo;
        }
Exemple #2
0
        private void btnAñadr_Click(object sender, EventArgs e)
        {
            Actividades act = new Actividades();

            act.ID_Actividad     = txtIDACT.Text;
            act.Nombre_Actividad = txtNombreACT.Text;
            act.Docente          = txtDocenteACT.Text;
            act.Grupo            = txtGrupoACT.Text;
            if (edit_indx > -1)
            {
                Actividad[edit_indx] = act;
                edit_indx            = -1;
            }
            else
            {
                Actividad.Add(act);
            }

            ActuallizacionData();
            limpiar();
        }