Ejemplo n.º 1
0
        private void frmTrangChu_FormClosing(object sender, FormClosingEventArgs e)
        {
            DialogResult r;

            r = MessageBox.Show(tenNV + "\n Bạn có muốn đăng xuất tài khoản không ?", "Xuất tài khoản", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2);
            if (r == DialogResult.No)
            {
                e.Cancel = true;
            }
            else
            {
                frmDangNhap dn = new frmDangNhap();
                dn.ShowDialog();
            }
        }
Ejemplo n.º 2
0
 private void timer1_Tick(object sender, EventArgs e)
 {
     try
     {
         rectangleShape2.Width += 3;
         if (rectangleShape2.Width >= 640)
         {
             timer1.Stop();
             this.Hide();
             frmDangNhap dn = new frmDangNhap();
             dn.ShowDialog();
             this.Close();
         }
         if (rectangleShape2.Width >= 350 || rectangleShape2.Width == 500)
         {
             rectangleShape2.Width += 30;
         }
     }
     catch (Exception)
     {
         return;
     }
 }