private void toolStripMenuItem1_Click(object sender, EventArgs e) { frmCategoriaAE frm = new frmCategoriaAE(); frm.Text = "Agregar categoria"; DialogResult dr = frm.ShowDialog(); if (dr == DialogResult.OK) { try { Categoria cat = frm.GetObjeto(); CategoriasBD.Agregar(cat); DataGridViewRow r = new DataGridViewRow(); r.CreateCells(dgCategorias); SetearFilas(r, cat); AgregarFila(r); Actualizar(); } catch (Exception) { MessageBox.Show("No se pudo agregar el registro. Reintente"); } } }
private void btnAddCat_Click(object sender, EventArgs e) { frmCategoriaAE frm = new frmCategoriaAE(); frm.Text = "Agregar categoria"; DialogResult dr = frm.ShowDialog(); if (dr == DialogResult.OK) { try { Categoria c = frm.GetObjeto(); CategoriasBD.Agregar(c); CategoriasBD.CargarCombo(ref cboCategoria); } catch (Exception) { throw; } } }