private void btnThoat_Click(object sender, EventArgs e) { GIAODIEN f2 = new GIAODIEN(); this.Hide(); f2.ShowDialog(); }
private void btnDangnhap_Click(object sender, EventArgs e) { if (kiemtra(textBox1.Text, textBox2.Text)) { GIAODIEN f1 = new GIAODIEN(); MessageBox.Show("Đăng nhập thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Hide(); f1.ShowDialog(); } else { MessageBox.Show("Tài khoản hoặc mật khẩu không chính xác"); this.textBox1.Text = ""; this.textBox2.Text = ""; textBox1.Focus(); } }