Example #1
0
 private void btn_ADD_payedmoney_Click(object sender, EventArgs e)
 {
     PL.FRM_paymoney frm = new PL.FRM_paymoney();
     frm.ShowDialog();
     load_all_payedmoney();
     cmbCUT_Name.Items.Clear();
     load_all_payedmoneyName();
 }
Example #2
0
 private void تعديلToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("هل انت متاكد من تعديل معلومات المصروف؟", "عملية التعديل", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation) == DialogResult.Yes)
     {
         PL.FRM_paymoney frm = new PL.FRM_paymoney();
         frm.tbPayID.Text           = this.dataGridView1.CurrentRow.Cells[0].Value.ToString();
         frm.tb_PayName.Text        = this.dataGridView1.CurrentRow.Cells[1].Value.ToString();
         frm.tb_payDescription.Text = this.dataGridView1.CurrentRow.Cells[2].Value.ToString();
         frm.tb_Payamount.Text      = this.dataGridView1.CurrentRow.Cells[3].Value.ToString();
         frm.dateTimePicker1.Text   = this.dataGridView1.CurrentRow.Cells[4].Value.ToString();
         frm.Text = "تعديل معلومات المصروف " + this.dataGridView1.CurrentRow.Cells[1].Value.ToString();
         frm.btn_ADD_payedmoney.Text = "تعديل";
         frm.state = "update";
         frm.ShowDialog();
         load_all_payedmoney();
     }
     else
     {
         MessageBox.Show("تم الغاء عملية التعديل", "عملية التعديل", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     }
 }