private void guardarToolStripMenuItem_Click(object sender, EventArgs e) { Class.Socio socio = new Class.Socio(); try { socio.Cedula = TxtCedulaSocio.Text; socio.Nombre = TxtNombreSocio.Text; socio.Telefono1 = TxtTelefono1.Text; socio.Telefono2 = TxtTelefono2.Text; socio.Direccion = TxtDireccion.Text; if (socio.Save()) { MessageBox.Show("Registro Afectado con éxito", "Cambio realizado!", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Cambio NO completado", "Cambio RECHAZADO!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } catch (Exception es) { MessageBox.Show(es.Message, "Error!", MessageBoxButtons.OK, MessageBoxIcon.Error); } finally { Limpiar_Pantalla(); } }
private void GridSocios_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e) { try { Class.Socio socio = new Class.Socio(); if (socio.Fill(GridSocios.Rows[e.RowIndex].Cells["Cedula"].Value.ToString())) { TxtCedulaSocio.Text = socio.Cedula; TxtNombreSocio.Text = socio.Nombre; TxtTelefono1.Text = socio.Telefono1; TxtTelefono2.Text = socio.Telefono2; TxtDireccion.Text = socio.Direccion; tabControl1.SelectTab(1); } } catch (Exception) { } }