login/password script
login/password script
Rate login/password script
(2(2 Vote))
'text box 1 called text1
'text box 2 called text2
'command button called command1
'place this code in the button.
private sub command1_click()
if text1.text = "username" and text2.text = "password" then
msgbox "access granted"
form2.show
else
msgbox "access denied"
end if
end sub
'and there you are
login/password script Comments
No comments yet — be the first to post one!
Post a Comment