I am trying to make something that has a account creation system and a login type system. For this example i will say i have 3 friends, each of them have the program and create an account. How can i make it so they all have their own unique login without making the code say
Code:
if textbox1.text = ("User 1") then
form2.show()
else
msgbox("Invalid Username/password")
if textbox1.text = ("User 2") then
form2.show()
else
msgbox("Invalid Username/password")
if textbox1.text = ("User 3") then
form2.show()
else
msgbox("Invalid Username/password")