Visual Basic 2010, 2008 - Password Protection using Textbox
Uploader Comments (danielcreations)
Top Comments
-
Add 2 textboxes end a button:
If textbox1.text = ("daniel") and textbox2.text = ("creations") = True Then
Form2.Show
if textbox1.text = ("daniel") and textbox2.text = ("creations") = False Then
Incorrect Password or Username
All Comments (18)
-
thanks it's helpful to understand me to create my project thanks
-
TNX YOU WORKING !
-
People using C++, try the following...
On the TextChanged Event add:
yourpasswordBox->UseSystemPass
wordChar = true; -
You know it takes about 1 minute to decode a Visual Basic application...right?
-
I made one out of the standard vbs to open a hidden folder called "secrit" on an external drive and it takes you to C drive if you are incorrect so that you think you were right and don't try to hack it
-
@sassof2 Private Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Click
if textbox1.text = "Daniel" then
button1.enabled
else msgbox ("incorect password.")
button1
form2.show
try that?
BAD PROTECTION!!! A cracker would crack that in 1min!
hackiosa 1 year ago
@hackiosa oh, lol. "this is basic"
danielcreations 1 year ago 8
Before end if you should put "Else MsgBox("Password Incorrect")
then end if
TheMiniFeez 2 years ago
Its all up to you..
danielcreations 2 years ago