Example #1
0
 private void timer1_Tick(object sender, EventArgs e)
 {
     progressBar1.Increment(1);
     if (progressBar1.Value == 100)
     {
         timer1.Stop();
         this.Hide();
         frmDangNhap f = new frmDangNhap();
         f.ShowDialog();
         this.Close();
     }
 }
Example #2
0
        private void btnDangXuat_Click(object sender, EventArgs e)
        {
            var userChoice = MessageBox.Show("Bạn có chắc chắn muốn đăng xuất không ?",
                                             "Thông báo",
                                             MessageBoxButtons.OKCancel, MessageBoxIcon.Question);

            if (userChoice == DialogResult.OK)
            {
                string strThoiGianHienTai =
                    DateTime.Now.ToString("dd/MM/yyyy hh:mm:ss tt");
                MessageBox.Show("Đăng xuất thành công lúc " + strThoiGianHienTai, "Thông báo",
                                MessageBoxButtons.OK, MessageBoxIcon.Information);
                this.Hide();
                frmDangNhap f = new frmDangNhap();
                f.ShowDialog();
                this.Close();
            }
        }