Ok trying to setup a simple user login system
The first attempt I just used if statements for example
Anyway the way above works, but I would like it if I can store the username/password in text file, so I can eventually setup self registration.
I need a little push in the write direction for the code I need to start me off,
The first attempt I just used if statements for example
Code:
If txtusername = "carl" and txtpassword = "password" Then OK = True Form4.show else MSGbox("please enter correct details") end if
I need a little push in the write direction for the code I need to start me off,
Comment