private void button3_Click(object sender, EventArgs e)
        {
            Form old = new اداره_فواتير();

            this.Hide();
            old.Show();
        }
        private void RECEIPTSBUTTON_Click(object sender, EventArgs e)
        {
            Form RECEIPTS = new اداره_فواتير();

            this.Hide();
            RECEIPTS.Show();
        }
Exemple #3
0
        private void button4_Click(object sender, EventArgs e)
        {
            if (client_id != null || dataGridView1.Rows.Count > 0)
            {
                DialogResult dialog =
                    MessageBox.Show("هل تود الرجوع الى القائمة السابقة؟ كل البيانات الغير مسجلة سيتم\n تجاهلها", "رجوع",

                                    MessageBoxButtons.YesNo,

                                    MessageBoxIcon.Exclamation,

                                    MessageBoxDefaultButton.Button2);


                if (dialog == DialogResult.Yes)
                {
                    Form receipts = new اداره_فواتير();
                    this.Hide();
                    receipts.Show();
                }
            }
            else
            {
                Form receipts = new اداره_فواتير();
                this.Hide();
                receipts.Show();
            }
        }
        private void button4_Click(object sender, EventArgs e)
        {
            Form receipts = new اداره_فواتير();

            this.Hide();
            receipts.Show();
        }