How to Make a KeyGen

by bared145 in Circuits > Software

84437 Views, 16 Favorites, 0 Comments

How to Make a KeyGen

6.jpg
This Is A Simple How to make a Keygen in VB.NET and NO Im not using real Keys. But What You Would Do Is in the coding you would have to replace the X's with The key itself.

Make a New Proect

1.jpg
Start Visual Basic 2010.
Make a New Windows Form Applications.

Make 4 Labels

3.jpg
2.jpg
Make 4 Labels. One that says "64bit Key" and another for "32bit Key."
Make 2 other Labels that say "Key".

Make 2 Text Boxes and 2 Buttons

4.jpg
Make 2 Text Boxes and 2 Buttons.
Name The Buttons Generate and Keep The Text Boxes Blank.

Coding the Buttons

5.jpg
For the Generate Buttons (Buttons 1/2) Put this code in:
TextBox1.Text = Int(Rnd() * 4)
Select Case TextBox1.Text
Case 0
TextBox1.Text = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
Case 1
TextBox1.Text = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
Case 2
TextBox1.Text = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
Case 3
TextBox1.Text = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
Case 4
TextBox1.Text = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
Case 5
TextBox1.Text = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
End Select

Run It and If It Works Your Finished

6.jpg
Run and See if it works Without Error
If So Build and Publish It