Beispiel #1
0
        //save & add order 2
        private void button2_Click(object sender, EventArgs e)
        {
            string Type = "";
            if (radioButton1.Checked)
            {
                Type = radioButton1.Text;
            }
            else if (radioButton2.Checked)
            {
                Type = radioButton2.Text;
            }
            else if (radioButton3.Checked)
            {
                Type = radioButton3.Text;
            }
            else if (radioButton4.Checked)
            {
                Type = radioButton4.Text;
            }
            else if (radioButton5.Checked)
            {
                Type = radioButton5.Text;
            }
            else if (radioButton6.Checked)
            {
                Type = radioButton6.Text;
            }
            else if (radioButton7.Checked)
            {
                Type = radioButton7.Text;
            }
            else if (radioButton8.Checked)
            {
                Type = radioButton8.Text;
            }
            else if (radioButton9.Checked)
            {
                Type = radioButton9.Text;
            }
            else if (radioButton10.Checked)
            {
                Type = radioButton10.Text;
            }
            else if (radioButton11.Checked)
            {
                Type = radioButton11.Text;
            }
            else if (radioButton12.Checked)
            {
                Type = radioButton12.Text;
            }

            if (!textBox2.Text.Any(char.IsDigit) || string.IsNullOrWhiteSpace(textBox2.Text))
            {
                MessageBox.Show("Please enter a Numeric value to Tax");
            }
            else
            {
                DialogResult result2 = MessageBox.Show("Confirm This Order", "Important Query", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
                if (result2 == DialogResult.Yes)
                {
                    con.Open();
                    SqlCommand cmd = new SqlCommand("INSERT INTO Sale_order (Type, Refrences, Date, Time, Tax) VALUES('" + Type + "','" + textBox1.Text + "','" + this.dateTimePicker1.Text + "','" + this.dateTimePicker2.Text + "','" + textBox2.Text + "')", con);
                    cmd.ExecuteNonQuery();

                    con.Close();

                    Add_order2 ad = new Add_order2();
                    this.Hide();
                    ad.Show();
                }
                else
                {
                    MessageBox.Show("Order Cancelled");
                }
            }
        }
Beispiel #2
0
        private void button2_Click(object sender, EventArgs e)   //save & add order 2
        {
            string Type = "";

            if (radioButton1.Checked)
            {
                Type = radioButton1.Text;
            }
            else if (radioButton2.Checked)
            {
                Type = radioButton2.Text;
            }
            else if (radioButton3.Checked)
            {
                Type = radioButton3.Text;
            }
            else if (radioButton4.Checked)
            {
                Type = radioButton4.Text;
            }
            else if (radioButton5.Checked)
            {
                Type = radioButton5.Text;
            }
            else if (radioButton6.Checked)
            {
                Type = radioButton6.Text;
            }
            else if (radioButton7.Checked)
            {
                Type = radioButton7.Text;
            }
            else if (radioButton8.Checked)
            {
                Type = radioButton8.Text;
            }
            else if (radioButton9.Checked)
            {
                Type = radioButton9.Text;
            }
            else if (radioButton10.Checked)
            {
                Type = radioButton10.Text;
            }
            else if (radioButton11.Checked)
            {
                Type = radioButton11.Text;
            }
            else if (radioButton12.Checked)
            {
                Type = radioButton12.Text;
            }


            if (!textBox2.Text.Any(char.IsDigit) || string.IsNullOrWhiteSpace(textBox2.Text))
            {
                MessageBox.Show("Please enter a Numeric value to Tax");
            }
            else
            {
                DialogResult result2 = MessageBox.Show("Confirm This Order", "Important Query", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
                if (result2 == DialogResult.Yes)
                {
                    con.Open();
                    SqlCommand cmd = new SqlCommand("INSERT INTO Sale_order (Type, Refrences, Date, Time, Tax) VALUES('" + Type + "','" + textBox1.Text + "','" + this.dateTimePicker1.Text + "','" + this.dateTimePicker2.Text + "','" + textBox2.Text + "')", con);
                    cmd.ExecuteNonQuery();

                    con.Close();

                    Add_order2 ad = new Add_order2();
                    this.Hide();
                    ad.Show();
                }
                else
                {
                    MessageBox.Show("Order Cancelled");
                }
            }
        }