Esempio n. 1
0
 private void button1_Click(object sender, EventArgs e)
 {
     if (!string.IsNullOrEmpty(textBox1.Text) && !string.IsNullOrEmpty(textBox2.Text) &&
         !string.IsNullOrEmpty(textBox3.Text) && !string.IsNullOrEmpty(textBox4.Text))
     {
         conn = new SqlConnection(util.GetConnectionString());
         cmd  = new SqlCommand("Insert into Item (Code,name,supplier,type,qty,qtyunit,price) VALUES (N'" + textBox1.Text + "' , N'" + textBox2.Text + "',N'" + textBox3.Text + "',N'" + textBox4.Text + "', 0, 0 ,0 )", conn);
         SqlDataReader rdr;
         try
         {
             conn.Open();
             rdr = cmd.ExecuteReader();
             MessageBox.Show("Done");
             buys.Show();
             this.Close();
         }
         catch
         {
             MessageBox.Show("Failed");
         }
     }
     else
     {
         MessageBox.Show("رجاء ادخال كل المساحات الخالية");
     }
 }
Esempio n. 2
0
        private void button2_Click(object sender, EventArgs e)
        {
            Buys newbuys = new Buys();

            newbuys.Show();
        }