Beispiel #1
0
        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            ForgetPassword l = ForgetPassword.getInstance();

            l.Show();
            this.Hide();
        }
Beispiel #2
0
 public static ForgetPassword getInstance()
 {
     if (l == null)
     {
         l = new ForgetPassword();
         l.Show();
         return(l);
     }
     else
     {
         return(l);
     }
 }