I would like to setup a login for users into my program.
I have already done this, but the username and password is encorporated into the code like this:
Private Sub cmdOK_Click()
If txtUserName = "til" Then
LoginSucceeded = True
Else
MsgBox "Invalid username, try again!", ...
that creates the log, of whatever is in the " ", how do I create a log of something that changes. eg log of users logging in.
heres some code i've been playing around with:
Private Sub cmdOK_Click()
If txtUserName = "til" Then
LoginSucceeded = True
Else
MsgBox "Invalid username...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.