Guest User

Untitled

a guest
Aug 14th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. saving details within application
  2. if(chkRememberMe.Checked)
  3. {
  4. Properties.Settings.Default.Username = txtUsername.Text;
  5. Properties.Settings.Default.Password = txtPassword.Text;
  6. Properties.Settings.Default.Save();
  7. }
  8.  
  9. txtUsername.Text = Properties.Settings.Default.Username;
  10. txtPassword.Text = Properties.Settings.Default.Password;
Add Comment
Please, Sign In to add comment