private void btn_P_Save_Click(object sender, EventArgs e) { try { btn_Save_Click(sender, e); if (Print == 1) { FRM_Report_Entry_Bond fRM_Report_Entry_Bond = new FRM_Report_Entry_Bond(); fRM_Report_Entry_Bond.Show(); FRM_Report_Entry_Bond.fRM_Report.textBox_Bond_No.Text = printNo.ToString(); FRM_Report_Entry_Bond.fRM_Report.textBox_Year.Text = textBox_Year.Text; } Print = 0; } catch (Exception ee) { con.Close(); MessageBox.Show("يرجى تصوير الخطأ ومراجعة مدير النظام ، شكرا" + ee.Message, "ERROR 1024 Entry_Bond", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void button9_Click(object sender, EventArgs e) { try { //---------------------------- صلاحية سند الإدخال------------------------------------------------- SqlDataReader ddr; SqlCommand ccmd = new SqlCommand("select Priv_Display from TB_Priv where Priv_User_ID=" + Convert.ToInt32(Program.user_ID) + " and Priv_Screen_ID=30", con); con.Open(); ddr = ccmd.ExecuteReader(); if (ddr.Read()) { if (ddr["Priv_Display"].ToString() == "True") { FRM_Report_Entry_Bond fRM_Report_Entry_Bond = new FRM_Report_Entry_Bond(); fRM_Report_Entry_Bond.Show(); } else { MessageBox.Show("عذرا ، أنت لا تملك صلاحية للدخول الى هذه الشاشة", " 30 طباعة سند الإدخال", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } else { MessageBox.Show("عذرا ، أنت لا تملك صلاحية للدخول الى هذه الشاشة", " 30 طباعة سند الإدخال", MessageBoxButtons.OK, MessageBoxIcon.Warning); } ddr.Close(); con.Close(); //--------------------------------------------------------------------------------------- } catch (Exception ee) { con.Close(); MessageBox.Show("يرجى تصوير الخطأ ومراجعة مدير النظام ، شكرا" + ee.Message, "ERROR 1005 Home_Reports", MessageBoxButtons.OK, MessageBoxIcon.Error); } }