Jorg hi Site Admin
Joined: 21 Jan 2008 Posts: 4
|
Posted: Mon Feb 18, 2008 5:11 pm Post subject: How to Protect you Applications! For Visual Basic 2008 |
|
|
FIrst you need 10 text boxes on a form
then 1 button
And a timer
________________________________________________________
Make the form name called Activate
Make the caption (your Choice)
________________________________________________________
Then put this code in the button
| Code: | If Me.TextBox1.Text = "YOUR PASSWORD" Then
Me.TextBox2.Text = "Step#1"
End If |
_________________________________________________________
Then in textbox1 put code
| Code: |
If Me.TextBox1.Text = "YOUR PASSWORD" Then
Me.TextBox3.Text = "FCompile"
End If
|
__________________________________________________________
Then in button1 add code
| Code: | If Me.TextBox2.Text = "Step#1" Then
Me.TextBox4.Text = "DFSF"
End If |
__________________________________________________________
Then in textbox2 put code
If Me.TextBox2.Text = "Step#1" Then
Me.TextBox4.Text = "DFSF"
End If
__________________________________________________________
Then in textbox5 and 6 and 7 put code
| Code: | if me.textbox5.text="ZZZZZZZ" then
me.textbox8.text=me.textbox5.text & me.textbox6.text &
me.textbox7.text
end if |
__________________________________________________________
Then in textbox 8 put
| Code: |
if me.textbox8.text=me.textbox5.text & me.textbox6.text & me.textbox7.text then
me.textbox9.text="XZZC"
else
me.close
|
__________________________________________________________
Then in textbox9 & textbox10
| Code: |
form1.show
timer1.enabled=true
me.hide
|
__________________________________________________________
Then put this code in timer 10
| Code: |
dim bob as new windows.forms.form
if CheckForIllegalCrossThreadCalls = True then
bob.show
end if
|
__________________________________________________________
And your done but its hard to get in it even if you have the password you need to be a pro hacker
credits-(me)
 _________________ I LIKE PIE BUT WAIT PIE COOKIE!!
 |
|