I'm using mybb to login to my application in i wanna add a remember check box
This is inside my button
Then i have this code inside form1 load
This is inside my button
Code:
If ReactorCheckBox1.Checked Then
My.Settings.Username = ReactorTextBox1.Text
My.Settings.Password = ReactorTextBox2.Text
Else
My.Settings.Username = ""
My.Settings.Password = ""
End If
Code:
ReactorTextBox1.Text = My.Settings.Username
ReactorTextBox2.Text = My.Settings.Password