Пример #1
0
 private void txt_supp_search_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyCode == Keys.Enter)
     {
         e.SuppressKeyPress       = true;
         dqv_suppliers.DataSource = Supplier.SPSelectSupplier(txt_supp_search.Text);
     }
 }
        private void btn_add_supplier_Click(object sender, EventArgs e)
        {
            frm_add_supplier frm = new frm_add_supplier();

            if (frm.ShowDialog() == DialogResult.OK)
            {
                if (Supplier.add_supplier(int.Parse(frm.txt_supplier_id.Text), frm.txt_supplier_name.Text, frm.txt_supplier_address.Text, frm.txt_supplier_phone.Text) == true)
                {
                    dqv_suppliers.DataSource = Supplier.SPSelectSupplier("");
                }
                else
                {
                    MessageBox.Show("فشل في إضافة المورد");
                }
            }
        }
 private void btn_delete_Click(object sender, EventArgs e)
 {
     if (dqv_suppliers.SelectedRows.Count > 0)
     {
         if (MessageBox.Show("هل أنت متأكد من حذف المورد المحدد؟", "تنبيه", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
         {
             if (Supplier.delete_supplier(int.Parse(dqv_suppliers.CurrentRow.Cells[0].Value.ToString())) == true)
             {
                 dqv_suppliers.DataSource = Supplier.SPSelectSupplier("");
                 MessageBox.Show("تم حذف المورد المحدد بنجاح");
             }
             else
             {
                 MessageBox.Show("فشل في حذف المورد المحدد");
             }
         }
     }
 }
        private void btn_edit_supp_Click(object sender, EventArgs e)
        {
            frm_add_supplier frm = new frm_add_supplier();

            frm.Text = "تعديل بيانات مورد";
            frm.txt_supplier_id.Text      = dqv_suppliers.CurrentRow.Cells[0].Value.ToString();
            frm.txt_supplier_name.Text    = dqv_suppliers.CurrentRow.Cells[1].Value.ToString();
            frm.txt_supplier_address.Text = dqv_suppliers.CurrentRow.Cells[2].Value.ToString();
            frm.txt_supplier_phone.Text   = dqv_suppliers.CurrentRow.Cells[3].Value.ToString();
            if (frm.ShowDialog() == DialogResult.OK)
            {
                if (Supplier.update_supplier(int.Parse(frm.txt_supplier_id.Text), frm.txt_supplier_name.Text, frm.txt_supplier_address.Text, frm.txt_supplier_phone.Text) == true)
                {
                    dqv_suppliers.DataSource = Supplier.SPSelectSupplier("");
                }
                else
                {
                    MessageBox.Show("فشل في تحديث المورد");
                }
            }
        }
 private void btn_search_Click(object sender, EventArgs e)
 {
     dqv_suppliers.DataSource = Supplier.SPSelectSupplier(txt_supp_search.Text);
 }
 private void frm_Supplier_Load(object sender, EventArgs e)
 {
     dqv_suppliers.DataSource = Supplier.SPSelectSupplier("");
 }