private void BtnInsertar_Click(object sender, EventArgs e) { try { string Rpta = ""; if (TxtNCurso.Text == string.Empty || TxtCupo.Text == string.Empty) { this.MensajeError("Falta ingresar algunos datos, serán remarcados."); ErrorIcono.SetError(TxtNCurso, "Ingrese nombre del curso."); ErrorIcono.SetError(TxtCupo, "Ingrese el cupo."); } else { Rpta = NCursos.insertar(TxtNCurso.Text.Trim(), Convert.ToInt32(TxtCupo.Text.Trim())); if (Rpta.Equals("OK")) { this.MensajeOk("Se insertó de forma correcta el registro"); this.Limpiar(); this.Listar(); } else { this.MensajeError(Rpta); } } } catch (Exception ex) { MessageBox.Show(ex.Message + ex.StackTrace); } }
private void Buscar() { try { DgvListado.DataSource = NCursos.Buscar(TxtBuscarCurso.Text); this.Formato(); LblTotal.Text = "Total registros: " + Convert.ToString(DgvListado.Rows.Count); } catch (Exception ex) { MessageBox.Show(ex.Message + ex.StackTrace); } }
private void Listar() { try { DgvListado.DataSource = NCursos.Listar(); this.Formato(); this.Limpiar(); } catch (Exception ex) { MessageBox.Show(ex.Message + ex.StackTrace); } }
private void BtnDesactivar_Click(object sender, EventArgs e) { try { DialogResult Opcion; Opcion = MessageBox.Show("Realmente deseas desactivar el(los) registro(s)?", "Sistema de ventas", MessageBoxButtons.OKCancel, MessageBoxIcon.Question); if (Opcion == DialogResult.OK) { int Codigo; string Rpta = ""; foreach (DataGridViewRow row in DgvListado.Rows) { if (Convert.ToBoolean(row.Cells[0].Value)) { Codigo = Convert.ToInt32(row.Cells[1].Value); Rpta = NCursos.Desactivar(Codigo); if (Rpta.Equals("OK")) { this.MensajeOk("Se desactivó el registro: " + Convert.ToString(row.Cells[2].Value)); } else { this.MensajeError(Rpta); } } } this.Listar(); } } catch (Exception ex) { MessageBox.Show(ex.Message + ex.StackTrace); } }