private void mnuInsert_Click(object sender, EventArgs e) { try { frmIncome f = new frmIncome(); f.op = "Add"; f.Form_Load(); f.ShowDialog(); } catch { } }
private void mnuEdit_Click(object sender, EventArgs e) { try { frmIncome f = new frmIncome(); f.op = "Edit"; f.FillData(Convert.ToInt32(dgvStore.CurrentRow.Cells["ID"].Value)); f.ShowDialog(); } catch { frmMessage f = new frmMessage(); f.flag = 0; f.lblMessage.Text = "درآمد انتخابی معتبر نمی باشد"; f.ShowDialog(); } }