public void Hienthi() { KetnoiCSDL kn = new KetnoiCSDL(); DataSet ds = new DataSet(); ds = kn.TruyvanDL(CommandType.Text, "Select * from LoaiCV", null); dataGridView1.DataSource = ds.Tables[0]; }
private void btn_dangnhap_Click(object sender, EventArgs e) { //ket noi csdl KetnoiCSDL kn = new KetnoiCSDL(); DataSet ds = new DataSet(); ds = kn.TruyvanDL(CommandType.Text, "Select * from Nguoidung where TaiKhoan='" + txt_User.Text + "' and MatKhau ='" + txt_Pass.Text + "' ", null); if (ds.Tables[0].Rows.Count > 0) { MessageBox.Show("Đăng nhập thành công"); Hethong ht = new Hethong(); ht.Show(); this.Hide(); } else { MessageBox.Show("Đăng nhập thất bại"); } }