private void FormSexes_Activated(object sender, EventArgs e) { if (verdadero) { bindingSourceSexes.DataSource = SexesORM.SelectAllSexes(); verdadero = false; } }
private void buttonAceptar_Click(object sender, EventArgs e) { if (textBoxNom.Text.Equals("")) { MessageBox.Show("Sexe buid!", "ADVERTÈNCIA", MessageBoxButtons.OK, MessageBoxIcon.Asterisk); textBoxNom.Select(); } else if (this.Text.Equals("NOU SEXE")) { String missatge = ""; this.s.tipus = textBoxNom.Text.ToString(); missatge = SexesORM.InsertSexe(this.s); if (missatge != "") { MessageBox.Show(missatge, "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { MessageBox.Show("Introduït perfectament!", "INFORMACIÓ", MessageBoxButtons.OK, MessageBoxIcon.Information); } this.Close(); } else if (this.Text.Equals("MODIFICAR SEXE")) { String missatge = ""; this.s.tipus = textBoxNom.Text.ToString(); missatge = SexesORM.UpdateSexe(this.s); if (missatge != "") { MessageBox.Show(missatge, "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { MessageBox.Show("Introduït perfectament!", "INFORMACIÓ", MessageBoxButtons.OK, MessageBoxIcon.Information); } this.Close(); } }
private Boolean eliminar() { Boolean correcto = true; String missatge = ""; DialogResult resultat = MessageBox.Show("Estàs segur de borra el sexe?", "PREGUNTA", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (resultat == DialogResult.Yes) { missatge = SexesORM.DeleteBySexe((SEXE)dataGridViewSexes.SelectedRows[0].DataBoundItem); if (!missatge.Equals("")) { MessageBox.Show(missatge, "ADVERTENCIA", MessageBoxButtons.OK, MessageBoxIcon.Error); correcto = false; } } else { correcto = false; } return(correcto); }
private void buttonEliminar_Click(object sender, EventArgs e) { eliminar(); verdadero = true; bindingSourceSexes.DataSource = SexesORM.SelectAllSexes(); }
private void FormSexes_Load(object sender, EventArgs e) { bindingSourceSexes.DataSource = SexesORM.SelectAllSexes(); }