private void executeNuevo() { FormIngresoNuevo formIngreso = new FormIngresoNuevo(); formIngreso.ShowDialog(); cargarRegistros(); }
private void executeNuevo() { loadCajaSesion(); FormIngresoNuevo formIngreso = new FormIngresoNuevo(); formIngreso.ShowDialog(); cargarRegistros(); }
private void executeModificar() { // Verificando la existencia de datos en el datagridview if (dataGridView.Rows.Count == 0) { MessageBox.Show("No hay un registro seleccionado", "Eliminar", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); return; } int index = dataGridView.CurrentRow.Index; // Identificando la fila actual del datagridview int idIngreso = Convert.ToInt32(dataGridView.Rows[index].Cells[0].Value); // obteniedo el idRegistro del datagridview currentIngreso = ingresos.Find(x => x.idIngreso == idIngreso); // Buscando la registro especifico en la lista de registros // Mostrando el formulario de modificacion FormIngresoNuevo formIngreso = new FormIngresoNuevo(currentIngreso); formIngreso.ShowDialog(); cargarRegistros(); // recargando loas registros en el datagridview }