[Tutorial] How to Create a Keygen using Visual Basic 8 - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18) +---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19) +---- Thread: [Tutorial] How to Create a Keygen using Visual Basic 8 (/showthread.php?tid=4861) |
[Tutorial] How to Create a Keygen using Visual Basic 8 - Chris - 02-17-2010 Hey everyone, in this tutorial i would like to teach you how to create a keygen using Visual Basic 8. Description: A keygen means a program that generate keys for a certain program. Preparation:
1. Create a project Open Visual Basic 8 and create a Windows Form Application. Name it as the keygen you want to make. In this tutorial, i will make a Windows 7 Keygen as an example. Spoiler (Click to View) 2. Edit the project properties When you've done creating the project, now you have to change the project's properties. In the box at the bottom right hand side of the project, that's where you change the properties for everything. Click on the form and change the properties as below:
Spoiler (Click to View) 3. Adding items into your project Now you should add some items into your keygen. These are the things you should contain in a keygen:
4. Finding a logo Now you should find a logo to put into your keygen. The logo must be related to the program of the keygen. You can google the logo of the program and add some text into it. This is what i made for mine: Spoiler (Click to View) Once you got your logo ready, insert a PictureBox into your project and insert the picture into it. 5. Insert the data into your project Once you've inserted your logo, you can start to put in the required data into your project. Insert a label and change the Text to "Select the version you want:" or something like that. Once you've done that, you can now proceed to the ComboBox/RadioButton. Here i will use ComboBox because it's much more easier to use. To change the data in the ComboBox, click on the ComboBox and click Items in the Properties. 6. Inserting your keys into the keygen Now you can start inserting the keys into your keygen. These keys will be shown when you click the Generate Button. Double click the Generate button and paste the following into the code: Code: TextBox1.Text = Int(Rnd() * 4) Replace the XXXXX-XXXXX-XXXXX-XXXXX-XXXXX with some keys. Spoiler (Click to View) 7. Finalizing and building your keygen Now you have already reached the last step of building your keygen! Press F5 and debug your project and test whether the buttons are working or not. When you're done, click Build on the top menu and click Build {ProjectName}. Spoiler (Click to View) -------------------------------------------------------- And now you're done! I'll provide you the exe for my project here... exe file download: Code: http://www.megaupload.com/?d=RO30OWNP Virus scan: Spoiler (Click to View) Project download: Code: http://www.megaupload.com/?d=BO6ZVY2U Spoiler (Click to View) This is how you can make a keygen using Visual Basic 8! Hope you like this tutorial, and please correct me if i missed anything... Please say thanks to keep this alive, i spent a day to write this tutorial o.O" RE: [TUT] How to Create a Keygen using Visual Basic 8 - DAMINK™ - 02-17-2010 Sorry bro but this thread will be trashed i feel. Hacking is not permitted here. Check the rules fella. RE: [TUT] How to Create a Keygen using Visual Basic 8 - Chris - 02-17-2010 (02-17-2010, 03:57 AM)DAMINK™ Wrote: Sorry bro but this thread will be trashed i feel. Sorry bro, haven't been on this site and forgotten that >.> I've edited the thread...(: RE: [TUT] How to Create a Keygen using Visual Basic 8 - DAMINK™ - 02-17-2010 Just a side note. The tut is top shelf as far as i can tell. Its just it was outside the rules. But craftily worded then perhaps its fine lol. I can see quite some time was spent on this. Good work. RE: [TUT] How to Create a Keygen using Visual Basic 8 - Chris - 02-17-2010 (02-17-2010, 04:16 AM)DAMINK™ Wrote: Just a side note. The tut is top shelf as far as i can tell. Its just it was outside the rules. But craftily worded then perhaps its fine lol. It's just a VB tutorial on how to make a key generator. Hope that it's fine lol Thanks for your comments there RE: [TUT] How to Create a Keygen using Visual Basic 8 - Light Guide - 02-17-2010 It really isn't hacking. It can be used as a hacking tool but I would just put a disclaimer at the top of the tutorial saying: This is for educational purposes only. By using this in any other way, blah blah blah. RE: [TUT] How to Create a Keygen using Visual Basic 8 - Crust - 02-17-2010 This is a nice little tut, Thanks bro. RE: [TUT] How to Create a Keygen using Visual Basic 8 - Chris - 02-17-2010 (02-17-2010, 07:26 AM)Light Guide Wrote: It really isn't hacking. It can be used as a hacking tool but I would just put a disclaimer at the top of the tutorial saying: Yeah... (02-17-2010, 08:02 AM)Crust Wrote: This is a nice little tut, Thanks bro. No problem mate :P RE: [TUT] How to Create a Keygen using Visual Basic 8 - uber1337 - 02-17-2010 Nice tutorial. Just so you are aware I can read the key's in your source perfectly, the blur makes it difficult but not impossible. RE: [Tutorial] How to Create a Keygen using Visual Basic 8 - Chris - 02-18-2010 (02-17-2010, 09:51 AM)uber1337 Wrote: Nice tutorial. Just so you are aware I can read the key's in your source perfectly, the blur makes it difficult but not impossible. Yeah, of cause. Glad that you like it |