private void btdangky_Click(object sender, EventArgs e) { FileStream fs = new FileStream("File.txt", FileMode.Append, FileAccess.Write); StreamWriter sw = new StreamWriter(fs); if (txtmatkhau1.Text == txtmatkhau2.Text) { sw.WriteLine(txttendn.Text + '|' + txtmatkhau1.Text + '|' + "nguoidung"); MessageBox.Show("Đăng ký thành công"); FrmLogin fl = new FrmLogin(); this.Close(); fl.Show(); } else { MessageBox.Show("Vui lòng nhập lại mật khẩu", "thong bao"); } sw.Flush(); sw.Close(); fs.Close(); }
private void loginToolStripMenuItem_Click(object sender, EventArgs e) { f2 = new FrmLogin(); f2.ShowDialog(); frmMain_Load(this, null); }