private void btnEditar_Click(object sender, EventArgs e) { FormRegistraryActualizarPlanes from = new FormRegistraryActualizarPlanes(); Plan p = new Plan(); if (tabla.SelectedRows.Count > 0) { p.id = tabla.CurrentRow.Cells[0].Value.ToString(); p.nombre = tabla.CurrentRow.Cells[1].Value.ToString(); p.precio = Decimal.Parse(tabla.CurrentRow.Cells[2].Value.ToString()); p.duracion = tabla.CurrentRow.Cells[3].Value.ToString(); p.rutinas = Inicio.lpl.MiListaDeRutinas(p.id); from.cargarplan(p); from.Show(); } else { MessageBox.Show("debe seleccionar fila"); } }
private void btnGuardarCambios_Click(object sender, EventArgs e) { FormRegistraryActualizarPlanes from = new FormRegistraryActualizarPlanes(); from.Show(); }