void load() { string sql = "SELECT tk As N'Tài khoản', mk AS N'Mật khẩu', status AS N'Loại tài khoản' FROM tkad order by status"; dataGridView1.DataSource = KetNoiCSDL.laybang(sql); comboBox1.SelectedIndex = 0; }
private void button3_Click(object sender, EventArgs e) { try { string sql = "DELETE from tkad where tk = '" + txb_username.Text + "'"; KetNoiCSDL.laybang(sql); txb_username.ResetText(); txb_pass.ResetText(); txb_username.Focus(); load(); } catch (Exception ex) { MessageBox.Show("Không xóa được!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void button3_Click(object sender, EventArgs e) { try { if (MessageBox.Show("Bạn có muốn xóa không", "Nhóm 9", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { string sql = "DELETE from tkad where tk = '" + txb_username.Text + "'"; KetNoiCSDL.laybang(sql); txb_username.ResetText(); txb_pass.ResetText(); txb_username.Focus(); load(); } } catch (Exception ex) { MessageBox.Show("Không xóa được!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
void load() { string sql = "SELECT * FROM tkad"; dataGridView1.DataSource = KetNoiCSDL.laybang(sql); }
void load() { string sql = "SELECT tk As N'Tài khoản', mk AS N'Mật khẩu' FROM tktk"; dataGridView1.DataSource = KetNoiCSDL.laybang(sql); }
private void button1_Click(object sender, EventArgs e) { try { string user = textBox1.Text; string pass = textBox2.Text; if (user.Equals("")) { MessageBox.Show("Bạn Chưa Nhập Tên Đăng Nhập", "Đăng Nhập", MessageBoxButtons.OK, MessageBoxIcon.Information); this.textBox1.Clear(); this.textBox1.Focus(); } else if (pass.Equals("")) { MessageBox.Show("Bạn Chưa Nhập Mật Khẩu", "Đăng Nhập", MessageBoxButtons.OK, MessageBoxIcon.Information); this.textBox2.Clear(); this.textBox2.Focus(); } else { string txt = getMD5(textBox2.Text); String sv = "select count(*) from tkad where tk = N'" + textBox1.Text + "' and mk=N'" + txt + "'"; String sv1 = "select * from tkad where tk = N'" + textBox1.Text + "' "; int i = KetNoiCSDL.count(sv); if (sai > 0) { if (i != 0) { DataTable tb = KetNoiCSDL.laybang(sv1); String ten = tb.Rows[0][0].ToString(); String status = tb.Rows[0][2].ToString(); if (status.Equals("Admin")) { this.Close(); MessageBox.Show("Bạn Đã Đăng Nhập Vào Tài Khoản Admin!", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information); main Main_chinh = new main(1, ten); Main_chinh.Show(); } else if (status.Equals("User")) { this.Close(); MessageBox.Show("Bạn Đã Đăng Nhập Vào Tài Khoản User!", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information); main Main_chinh = new main(0, ten); Main_chinh.Show(); } else if (status.Equals("Giáo viên")) { this.Close(); MessageBox.Show("Bạn Đã Đăng Nhập Vào Tài Khoản Giáo viên!", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information); main Main_chinh = new main(3, ten); Main_chinh.Show(); } else { this.Close(); MessageBox.Show("Bạn Đã Đăng Nhập Vào Tài Khoản Trưởng khoa!", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information); main Main_chinh = new main(2, ten); Main_chinh.Show(); } } else { sai = sai - 1; MessageBox.Show("Username Hoặc Password Sai! Bạn Còn " + sai + " Lần Đăng Nhập!", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information); this.textBox1.Clear(); this.textBox2.Clear(); this.textBox1.Focus(); } } else { MessageBox.Show("Đã Hết Lượt Truy Cập, Mời Bạn Đăng Nhập Lại!", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); Form1 f = new Form1(); f.Show(); } } } catch (Exception ex) { MessageBox.Show("Đã Có Lỗi Xảy Ra. Vui Lòng Kiểm Tra Lại!", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Error); } }