I intend to add a login functionality to my application,which will allow users to login to access the application. Any ideas, as to how I can do this ,in the simplest possible way?
: Hi! : : I intend to add a login functionality to my application,which will allow users to login to access the application. : Any ideas, as to how I can do this ,in the simplest possible way? : : Thank you
Simplest way? [code] Dim t As String t = InputBox("Please enter your username:") If t = "John" Then t = InputBox("Please enter your password:") If t = "Doe" Then MsgBox "Logged in" Else MsgBox "Invalid password" End If Else MsgBox "Invalid username" End If [/code] But that's far from secure. I don't know of a secure method though...
Comments
:
: I intend to add a login functionality to my application,which will allow users to login to access the application.
: Any ideas, as to how I can do this ,in the simplest possible way?
:
: Thank you
Simplest way?
[code]
Dim t As String
t = InputBox("Please enter your username:")
If t = "John" Then
t = InputBox("Please enter your password:")
If t = "Doe" Then
MsgBox "Logged in"
Else
MsgBox "Invalid password"
End If
Else
MsgBox "Invalid username"
End If
[/code]
But that's far from secure. I don't know of a secure method though...