VB.net Multiple Logins?

Justin

New member
I'm trying to make a login where it'll use multiple Different numerical IDs to give access to it..I use a 2nd form to generate these #'s. here's the code:

If GUID.Text = "5986954860954" And GUID.Text = "5983769774482" And Password.Text = "1768028" And Password.Text = "6072404"

If CheckBox1.Checked = True Then
My.Settings.Username = GUID.Text
My.Settings.Save()
My.Settings.Reload()
End If
If CheckBox1.Checked = True Then
My.Settings.Password = Password.Text
My.Settings.Save()
My.Settings.Reload()


It doesn't seem to work when I input those into the textboxes on the login..Is there something wrong with it?..Am I doing it right?
Bets answer gets 5 stars.
Thank you
 
Back
Top