private void bnt_dangnhap_Click(object sender, EventArgs e)
 {
     if (!string.IsNullOrEmpty(txt_taikhoan.Text))
     {
         if (DataConnection.kiemtradangnhap(txt_taikhoan.Text, txt_matkhau.Text) == true)
         {
             Home f = new Home(txt_taikhoan.Text);
             this.Visible = false;
             f.ShowDialog();
         }
         else
         {
             MessageBox.Show("Tài khoản hoặc mật khẩu không đúng", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
         }
     }
     else
     {
         MessageBox.Show("Vui lòng nhập tài khoản và mật khẩu", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }