コード例 #1
0
 private void button1_Click(object sender, EventArgs e)
 {
     if (hoten.Text == "" || pass.Text == "" || cmnd.Text == "" || email.Text == "" || diachi.Text == "" || cndk.Text == "")
     {
         MessageBox.Show("(*) là bắt buộc, vui lòng nhập đầy đủ");
     }
     else
     {
         string       query    = "EXEC sp_Khach @tentv , @cmnd , @ngay_sinh , @dia_chi , @chinhanhdk , @email , @pass";
         DataProvider provider = new DataProvider();
         int          data     = 0;
         data = provider.ExecuteNonQuery(query, new object[] { hoten.Text, cmnd.Text, ngaysinh.Value, diachi.Text, cndk.Text, email.Text, pass.Text });
         if (data > 0)
         {
             MessageBox.Show("Thêm thành công.");
             QuanLyThanhVien f = new QuanLyThanhVien();
             this.Hide();
             f.ShowDialog();
         }
         else
         {
             MessageBox.Show("Thêm không thành công.");
         }
     }
 }
コード例 #2
0
        private void back_Click(object sender, EventArgs e)
        {
            QuanLyThanhVien f = new QuanLyThanhVien();

            this.Hide();
            f.ShowDialog();
        }