username


Posted by Leon on February 08, 2002 9:48 AM

Is it possible to make some kind of input box that u can use as a login machine as i heard you can. For example a box that you can validate so that it only advances when u put a username that is valid and i would like this to be done without a dropdown menu



Posted by Jacob on February 08, 2002 2:01 PM

Hi

You can make a userform or inputbox

Lets say you use inputbox then

Username = inputbox("What is your username?")
if username = "CorrectUserName" Then
Proceed Code
Else
Failed Code
End If


HTH

Jacob