| View previous topic :: View next topic |
| Author |
Message |
coder sal Master Cheater
Reputation: 0
Joined: 11 May 2007 Posts: 304
|
Posted: Fri Mar 07, 2008 7:56 pm Post subject: VB6- What's wrong with my keygen? |
|
|
Edit: Problem solved. Source taken away from post.
Last edited by coder sal on Fri Mar 07, 2008 9:04 pm; edited 1 time in total |
|
| Back to top |
|
 |
_Teizhcial_ Master Cheater
Reputation: 0
Joined: 10 Aug 2007 Posts: 276
|
Posted: Fri Mar 07, 2008 8:20 pm Post subject: |
|
|
You need End If for every if statement.
Example of the wrong way.
| Code: | Private Sub Command1_Click()
If Label1.Caption = "1" Then
MsgBox ("yeah")
If Label1.Caption = "2" Then
MsgBox ("naww")
End If
End Sub |
Example of the Right way.
| Code: | Private Sub Command1_Click()
If Label1.Caption = "1" Then
MsgBox ("yeah")
End If
If Label1.Caption = "2" Then
MsgBox ("naww")
End If
End Sub |
_________________
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Fri Mar 07, 2008 8:20 pm Post subject: |
|
|
| How is that a keygen? You're not generating anything.
|
|
| Back to top |
|
 |
coder sal Master Cheater
Reputation: 0
Joined: 11 May 2007 Posts: 304
|
Posted: Fri Mar 07, 2008 8:34 pm Post subject: |
|
|
| _Teizhcial_ wrote: | You need End If for every if statement.
Example of the wrong way.
| Code: | Private Sub Command1_Click()
If Label1.Caption = "1" Then
MsgBox ("yeah")
If Label1.Caption = "2" Then
MsgBox ("naww")
End If
End Sub |
Example of the Right way.
| Code: | Private Sub Command1_Click()
If Label1.Caption = "1" Then
MsgBox ("yeah")
End If
If Label1.Caption = "2" Then
MsgBox ("naww")
End If
End Sub |
|
Ya thnx Teiz, I tried doing that it gives another error, I guess the best way is to do it with 1 textbox or 3 buttons and 3 textboxes. I'm gonna change the declarations, and make everything effect for text1.text.
Edit done, its on http://forum.cheatengine.org/viewtopic.php?t=209607
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Sat Mar 08, 2008 1:03 pm Post subject: |
|
|
This type of software creation is not allowed. This constitutes as warez.
Locked.
_________________
- Retired. |
|
| Back to top |
|
 |
|