private void timer1_Tick(object sender, EventArgs e) { frmLogin frm = new frmLogin(); progressBar1.Visible = true; this.progressBar1.Value = this.progressBar1.Value + 2; if (this.progressBar1.Value == 10) { label3.Text = "Reading modules.."; } else if (this.progressBar1.Value == 20) { label3.Text = "Turning on modules."; } else if (this.progressBar1.Value == 40) { label3.Text = "Starting modules.."; } else if (this.progressBar1.Value == 60) { label3.Text = "Loading modules.."; } else if (this.progressBar1.Value == 80) { label3.Text = "Done Loading modules.."; } else if (this.progressBar1.Value == 100) { frm.Show(); timer1.Enabled = false; this.Hide(); } }
private void Button1_Click(object sender, EventArgs e) { if (txtEmail.Text == "") { MessageBox.Show("Enter your email", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); txtEmail.Focus(); return; } try { Cursor = Cursors.WaitCursor; timer1.Enabled = true; DataSet ds = new DataSet(); SqlConnection con = new SqlConnection(cs); con.Open(); SqlCommand cmd = new SqlCommand("SELECT User_Password FROM Registration Where Email = '" + txtEmail.Text + "'", con); SqlDataAdapter da = new SqlDataAdapter(cmd); da.Fill(ds); con.Close(); if (ds.Tables[0].Rows.Count > 0) { MailMessage Msg = new MailMessage(); // Sender e-mail address. Msg.From = new MailAddress("*****@*****.**"); // Recipient e-mail address. Msg.To.Add(txtEmail.Text); Msg.Subject = "Your Password Details"; Msg.Body = "Your Password: "******"user_Password"]) + ""; Msg.IsBodyHtml = true; // your remote SMTP server IP. SmtpClient smtp = new SmtpClient(); smtp.Host = "smtp.gmail.com"; smtp.Port = 587; smtp.Credentials = new System.Net.NetworkCredential("*****@*****.**", "abcd"); smtp.EnableSsl = true; smtp.Send(Msg); MessageBox.Show(("Password Successfully sent " + ("\r\n" + "Please check your mail")), "Thank you", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Hide(); frmLogin LoginForm1 = new frmLogin(); LoginForm1.Show(); LoginForm1.txtUserName.Text = ""; LoginForm1.txtPassword.Text = ""; LoginForm1.ProgressBar1.Visible = false; LoginForm1.txtUserName.Focus(); } } catch (Exception ex) { MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void RecoveryPassword_FormClosing(object sender, FormClosingEventArgs e) { this.Hide(); frmLogin frm = new frmLogin(); frm.txtUserName.Text = ""; frm.txtPassword.Text = ""; frm.txtUserName.Focus(); frm.Show(); }
private void Button1_Click(object sender, EventArgs e) { try { int RowsAffected = 0; if ((txtUserName.Text.Trim().Length == 0)) { MessageBox.Show("Please enter user name", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); txtUserName.Focus(); return; } if ((txtOldPassword.Text.Trim().Length == 0)) { MessageBox.Show("Please enter old password", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); txtOldPassword.Focus(); return; } if ((txtNewPassword.Text.Trim().Length == 0)) { MessageBox.Show("Please enter new password", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); txtNewPassword.Focus(); return; } if ((txtConfirmPassword.Text.Trim().Length == 0)) { MessageBox.Show("Please confirm new password", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); txtConfirmPassword.Focus(); return; } if ((txtNewPassword.TextLength < 5)) { MessageBox.Show("The New Password Should be of Atleast 5 Characters", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); txtNewPassword.Text = ""; txtConfirmPassword.Text = ""; txtNewPassword.Focus(); return; } else if ((txtNewPassword.Text != txtConfirmPassword.Text)) { MessageBox.Show("Password do not match", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); txtNewPassword.Text = ""; txtOldPassword.Text = ""; txtConfirmPassword.Text = ""; txtOldPassword.Focus(); return; } else if ((txtOldPassword.Text == txtNewPassword.Text)) { MessageBox.Show("Password is same..Re-enter new password", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); txtNewPassword.Text = ""; txtConfirmPassword.Text = ""; txtNewPassword.Focus(); return; } con = new SqlConnection(cs.DBConn); con.Open(); string co = "Update Registration set Password = '******'where UserName='******' and Password = '******'"; cmd = new SqlCommand(co); cmd.Connection = con; RowsAffected = cmd.ExecuteNonQuery(); if ((RowsAffected > 0)) { MessageBox.Show("Successfully changed", "Password", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Hide(); txtUserName.Text = ""; txtNewPassword.Text = ""; txtOldPassword.Text = ""; txtConfirmPassword.Text = ""; frmLogin LoginForm1 = new frmLogin(); LoginForm1.Show(); LoginForm1.txtUserName.Text = ""; LoginForm1.txtPassword.Text = ""; LoginForm1.ProgressBar1.Visible = false; LoginForm1.txtUserName.Focus(); } else { MessageBox.Show("invalid user name or password", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); txtUserName.Text = ""; txtNewPassword.Text = ""; txtOldPassword.Text = ""; txtConfirmPassword.Text = ""; txtUserName.Focus(); } if ((con.State == ConnectionState.Open)) { con.Close(); } con.Close(); } catch (Exception ex) { MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void ChangePassword_FormClosing(object sender, FormClosingEventArgs e) { this.Hide(); frmLogin frm = new frmLogin(); frm.txtUserName.Text = ""; frm.txtPassword.Text = ""; frm.ProgressBar1.Visible = false; frm.txtUserName.Focus(); frm.Show(); }
private void logOutToolStripMenuItem_Click(object sender, EventArgs e) { this.Hide(); frmLogin fl = new frmLogin(); fl.Show(); }