private void btnCrear_Click(object sender, EventArgs e) { using (var form = new FormNuevaEspecie()) { var result = form.ShowDialog(); if (result == DialogResult.OK) { RefreshGrid(); } } }
private void btnNuevaEspecie_Click(object sender, EventArgs e) { using (var form = new FormNuevaEspecie()) { var result = form.ShowDialog(); if (result == DialogResult.OK) { ControllerPeces.Instance.PopulateComboboxEspecies(ref comboboxEspecies, ref idEspeciesCombobox); } } }
private void ModificarEspecie() { int colIdEspecie = ManagerGrids.Instance.GetColumnIndexByName(gridEspecies, "IDESPECIE"); int idEspecie = Convert.ToInt32(gridEspecies.Rows[gridEspecies.SelectedRows[0].Index].Cells[colIdEspecie].Value); using (var form = new FormNuevaEspecie(idEspecie)) { var result = form.ShowDialog(); if (result == DialogResult.OK) { RefreshGrid(); } } }