private void timer1_Tick_1(object sender, EventArgs e) { foreach (Form f in Application.OpenForms) { if (f.Name != "login2") { login2 lss = new login2(); lss.ShowDialog(); } } }
login2
TextBox.TextChanged
CheckBox.CheckStateChanged
System.DateTime
private void timer1_Tick_1(object sender, EventArgs e) { //Stop the timer timer1.Stop(); //Do your login verification here //Re-start the timer timer1.Start(); }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)