private void Btn_Agregar_Click(object sender, EventArgs e) { FrmLineaABM FrmLABM = new FrmLineaABM(); FrmLABM.ShowDialog(); Buscar(); }
private void Btn_Editar_Click(object sender, EventArgs e) { try { FrmLineaABM FrmLABM = new FrmLineaABM(DG_Datos.SelectedRows[0].Tag.ToString()); if (FrmLABM.ShowDialog() == System.Windows.Forms.DialogResult.OK) { Buscar(); } } catch { MessageBox.Show("Debe seleccionar una fila de la grilla de datos.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Information); } }