Results 1 to 9 of 9
  1. #1
    steven_italy's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    Italy
    Posts
    201
    Reputation
    23
    Thanks
    4

    Create a keygen in VB6

    someone can help to create a keygen (with randrom numbers) in VB6?

  2. #2
    jjalle's Avatar
    Join Date
    Feb 2008
    Location
    Im the ghost of human kindness , get in the van and ill drive you home.
    Posts
    39
    Reputation
    10
    Thanks
    1
    I dont kno you could make things like that in vb6 :O , or you ccan ? xD

  3. #3
    yup's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    102
    Reputation
    11
    Thanks
    3
    It would probably be easier with a different program.

  4. #4
    apezwijn's Avatar
    Join Date
    Feb 2007
    Gender
    male
    Location
    The Netherlands
    Posts
    1,525
    Reputation
    22
    Thanks
    682
    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.

  5. #5
    HeXel's Avatar
    Join Date
    Apr 2007
    Gender
    male
    Location
    Portugal
    Posts
    1,093
    Reputation
    40
    Thanks
    57
    My Mood
    Amused
    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

  6. #6
    Toymaker's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Location
    Hannah, Montana
    Posts
    659
    Reputation
    14
    Thanks
    193
    My Mood
    Amused
    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

  7. #7
    vignesh1230's Avatar
    Join Date
    Apr 2008
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    Wink 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.
    Last edited by vignesh1230; 04-05-2008 at 11:54 PM.

  8. #8
    Oneirish's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    3Oh!3, Colorado
    Posts
    4,568
    Reputation
    876
    Thanks
    866
    My Mood
    Inspired
    vignesh does that generate how many number? like x or xxxxxxxxxxxxx because that would help out alot?

  9. #9
    adamleslie0's Avatar
    Join Date
    Mar 2007
    Gender
    male
    Location
    Liverpool
    Posts
    198
    Reputation
    11
    Thanks
    7
    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)
    +REP PLEASE
    IF YOU FEEL I HELPED YOU

    DONATE TO ME PLEASE --> adamleslie@live.co.uk

Similar Threads

  1. Good Cracks/Serials/Keygens website
    By Elmo in forum Spammers Corner
    Replies: 11
    Last Post: 10-22-2016, 07:05 AM
  2. [Tutorial] How to create a keygen
    By maxkranen1 in forum Visual Basic Programming
    Replies: 12
    Last Post: 06-01-2010, 05:34 AM
  3. How to create a DLL Injector in VB6 ?
    By SteeL in forum Visual Basic Programming
    Replies: 1
    Last Post: 12-12-2008, 05:03 PM
  4. password creating vb6
    By boyd45 in forum Programming Tutorial Requests
    Replies: 15
    Last Post: 08-29-2008, 09:18 AM
  5. Creating A GunzRunnable
    By CrazyDeath in forum Game Hacking Tutorials
    Replies: 7
    Last Post: 01-01-2006, 11:20 PM

Tags for this Thread