private void timer1_Tick_1(object sender, EventArgs e) { x++; if (x == 5) { timer1.Stop(); pictureBox1.Hide(); label1.Hide(); this.Hide(); FormLogin login = new FormLogin(); login.Show(); } }
private void đăngXuấtToolStripMenuItem1_Click(object sender, EventArgs e) { string message = "Bạn có muốn đăng xuất không?"; string title = "Đăng xuất"; MessageBoxButtons buttons = MessageBoxButtons.YesNo; DialogResult result = MessageBox.Show(message, title, buttons); if (result == DialogResult.Yes) { this.Hide(); FormLogin dangnhap = new FormLogin(); dangnhap.Show(); } else { } }
private void bt_dangki_Click(object sender, EventArgs e) { if (txt_hoten.Text == "") { MessageBox.Show(" Bạn chưa nhập họ tên "); txt_hoten.Focus(); // đưa con trỏ về lại ô đó } else if (txt_email.Text == "") { MessageBox.Show(" Bạn chưa nhập email "); txt_email.Focus(); // đưa con trỏ về lại ô đó } else if (txt_sdt.Text == "") { MessageBox.Show(" Bạn chưa nhập số điện thoại "); txt_sdt.Focus(); // đưa con trỏ về lại ô đó } else if (txt_taikhoan.Text == "") { MessageBox.Show(" Bạn chưa nhập tên tài khoản"); txt_taikhoan.Focus(); // đưa con trỏ về lại ô đó } else if (txt_matkhau.Text == "") { MessageBox.Show(" Bạn chưa nhập mật khẩu "); txt_matkhau.Focus(); // đưa con trỏ về lại ô đó } else if (txt_xacnhanMK.Text == "") { MessageBox.Show(" Bạn chưa nhập xác nhận mật khẩu"); txt_xacnhanMK.Focus(); // đưa con trỏ về lại ô đó } else if (txt_matkhau.Text != txt_xacnhanMK.Text) { MessageBox.Show(" Bạn nhập mật khẩu không trùng khớp"); txt_xacnhanMK.Focus(); txt_xacnhanMK.SelectAll(); // bôi đen tất cả ô xác nhận mật khẩu để người dùng xóa đi nhanh } else { Form_Nguoidung nguoidung = new Form_Nguoidung(txt_hoten.Text, txt_email.Text, txt_sdt.Text, txt_taikhoan.Text, txt_matkhau.Text, txt_xacnhanMK.Text); if (nguoidung.Ktramatkhau() == true) { MessageBox.Show(" Bạn đã tạo tài khoản thành công !! "); ketnoi.Open(); sql = @"insert into Account(UserName , PassWord) values ('" + txt_taikhoan.Text + "', '" + txt_matkhau.Text + "') "; thuchien = new SqlCommand(sql, ketnoi); thuchien.ExecuteNonQuery(); ketnoi.Close(); this.Hide(); FormLogin dangnhap = new FormLogin(); dangnhap.Show(); } else { MessageBox.Show(" Sai rôi bạn eiii, tạo lại tài khoản đê =))) "); } try { n = int.Parse(txt_sdt.Text); } catch (FormatException) { MessageBox.Show("Phải nhập só"); } } }