Create a keygen in VB6

Posts 19 of 9 · Page 1 of 1
Create a keygen in VB6
someone can help to create a keygen (with randrom numbers) in VB6?
I dont kno you could make things like that in vb6 :O , or you ccan ? xD
It would probably be easier with a different program.
LoL if your just starting like you have some serials make each click a diff serial appear pm me so next time i recieve a pm from you i can give you a good site to learn cracking and making keygens in ollydbg.
Quote Originally Posted by steven_italy View Post
someone can help to create a keygen (with randrom numbers) in VB6?
damm google it

you will find a lot of info
u can use any language lol. but ya ull have to be able to program and the programming part will be easy google all the way
Random Password Generator
Create a text box and command button.
Add this code to your form:

Code:
Private Sub Command1_Click()
 Text1 = GenerateCode() 'make sure ur textbox is called Text1
 End Sub 
Public Function GenerateCode() strInputString ="1234567890abcdefghijklmnopq rstuvwxyzABCDEFGHIJKLMNOPQRSTUVXYS" 'these are the characters which will be in the password 
intLength = Len(strInputString)
 intNameLength = 7 'edit this according to how long u want ur password to be Randomize ' jus to make it random :D
 strName = "" For intStep = 1 To intNameLength      intRnd = Int((intLength * Rnd) + 1) 
strName = strName & Mid$(strInputString, intRnd, 1) 
Next 

GenerateCode = strName 
End Function


debug it and it works.
vignesh does that generate how many number? like x or xxxxxxxxxxxxx because that would help out alot?
It is very hard to make these and I think the only person on MPGH to succeed is Dave... A lot of people have tried but I will help you collect old codes if that is a help (y)
Posts 19 of 9 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

Need help?