Пример #1
0
 private void btncrear_Click(object sender, EventArgs e)
 {
     forms.Modulo_3.GestionTemas tema = new forms.Modulo_3.GestionTemas();
     tema.opcion = 0;
     tema.ShowDialog();
     CargaInicial();
 }
Пример #2
0
 private void btnmodificar_Click(object sender, EventArgs e)
 {
     forms.Modulo_3.GestionTemas tema = new forms.Modulo_3.GestionTemas();
     tema.opcion = 1;
     tema.id     = Int32.Parse(dgapp.Rows[dgapp.CurrentRow.Index].Cells[0].Value.ToString());
     tema.nombre = dgapp.Rows[dgapp.CurrentRow.Index].Cells[1].Value.ToString();
     tema.ShowDialog();
     CargaInicial();
 }