Beispiel #1
0
        private void metroButton3_Click(object sender, EventArgs e)
        {
            FRM_ADD_PRODUCT frm = new FRM_ADD_PRODUCT();

            frm.txtRef.Text        = this.dataGridView1.CurrentRow.Cells[0].Value.ToString();
            frm.txtDes.Text        = this.dataGridView1.CurrentRow.Cells[1].Value.ToString();
            frm.txtQte.Text        = this.dataGridView1.CurrentRow.Cells[2].Value.ToString();
            frm.txtPrice.Text      = this.dataGridView1.CurrentRow.Cells[3].Value.ToString();
            frm.cmbCategories.Text = this.dataGridView1.CurrentRow.Cells[4].Value.ToString();
            frm.Text            = "تحديث المنتج" + " :" + this.dataGridView1.CurrentRow.Cells[1].Value.ToString();
            frm.BTN_Login.Text  = "تحديث";
            frm.state           = "update";
            frm.txtRef.ReadOnly = true;
            byte[]       image = (byte[])prd.GET_IMAGE_PRODUCT(this.dataGridView1.CurrentRow.Cells[0].Value.ToString()).Rows[0][0];
            MemoryStream ms    = new MemoryStream(image);

            frm.Pbbox.Image = Image.FromStream(ms);
            frm.ShowDialog();
        }
Beispiel #2
0
        private void metroButton1_Click(object sender, EventArgs e)
        {
            FRM_ADD_PRODUCT frm = new FRM_ADD_PRODUCT();

            frm.ShowDialog();
        }
        private void إضافةمنتججديدToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FRM_ADD_PRODUCT adp = new FRM_ADD_PRODUCT();

            adp.ShowDialog();
        }