private void btnAtras_Click(object sender, EventArgs e)
 {
     DInformacionProyecto.restaIndex();
     visualizaDatos(
         Convert.ToString(DInformacionProyecto.dataListProyectos.Rows[DInformacionProyecto.index].Cells["id"].Value),
         Convert.ToString(DInformacionProyecto.dataListProyectos.Rows[DInformacionProyecto.index].Cells["titulo"].Value),
         Convert.ToString(DInformacionProyecto.dataListProyectos.Rows[DInformacionProyecto.index].Cells["descripcion"].Value),
         Convert.ToString(DInformacionProyecto.dataListProyectos.Rows[DInformacionProyecto.index].Cells["observaciones"].Value),
         Convert.ToString(DInformacionProyecto.dataListProyectos.Rows[DInformacionProyecto.index].Cells["fecha"].Value));
 }
Exemple #2
0
 public void botonAtras()
 {
     DInformacionProyecto.restaIndex();
     llamaVisualizaDatos();
 }