|
-
Oct 16th, 2008, 02:58 PM
#1
Thread Starter
New Member
Advanced password protection
Hey,
How could I make an advanced password protections like
Code:
PasswordTxt.Text.Contains("Advanced") And
PasswordTxt.Text.Contains ("Password") And
PasswordTxt.Text.Contains ("Protection") And
UsernameTxt.Text = ("unknown666") Then
End if
End Sub
When I enter this it doesn't work, any solution?
Kind regards,
unknown666
-
Oct 16th, 2008, 03:02 PM
#2
Re: Advanced password protection
What do you mean exactly? Is this what you're after?
VB.NET Code:
If PasswordTxt.Text.Contains("Advanced") AndAlso PasswordTxt.Text.Contains("Password") AndAlso PasswordTxt.Text.Contains("Protection") AndAlso UsernameTxt.Text = "unknown666" Then
'Do something
End If
-
Oct 16th, 2008, 03:36 PM
#3
Thread Starter
New Member
Re: Advanced password protection
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|