/// <summary> /// düzenle tuşuna basınca /// </summary> private void btnDuzenle_Click(object sender, EventArgs e) { if (GorevID.ToString2() == "0") { return; } frmxOps frm = new frmxOps(GorevID, IrsaliyeID, false, Ayarlar.MenuTip.ToInt32()); frm.ShowDialog(); }
/// <summary> /// işlem yapa basınca /// </summary> private void btnIslemYap_Click(object sender, EventArgs e) { if (GorevID == 0) { return; } frmxOps frm = new frmxOps(GorevID, IrsaliyeID, true, Ayarlar.MenuTip.ToInt32()); try { frm.ShowDialog(); } catch (Exception) { } }