[TuT]How to create a keygenerator in VB.NET [TuT] - 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: [TuT]How to create a keygenerator in VB.NET [TuT] (/showthread.php?tid=5482) Pages:
1
2
|
[TuT]How to create a keygenerator in VB.NET [TuT] - Beck - 04-05-2010 Hi everyone. Today, I will be showing you how to make a good-looking keygenerator in VB.NET. Q. What is a keygenerator? A. A keygenerator, (or sometimes shortened as keygen) is a program or tool that generates a keygen. Although some keygens are fake and are binded with malware using a binder, some do actually work. I'll be showing you how to make a fake one, I'll be showing you step by step what to do. 1. Open up a new VB.NET project. You'll see a blank square. That's called the form. On your left, is a big box of tools, which is known as the Toolbox. It includes many tools, such as buttons, textboxes, labels, etc; Let's say today we are going to make a Win7 Pin generator. Onto your form, drag a button, a textbox, and 2 labels. Right-click on your button. And choose properties, in properties, where it says text put in Generate. (keep in mind we are generating fake keys) Now, go to properties for label1, and in text, put Key : and put it right on top of textbox1. It will notify the user that what comes out of the textbox is our key. For properties of textbox, put ReadOnly to true. What does that mean? That means that what comes out of the textbox will not be editable, hence you can only read it, 'ReadOnly.' For properties of label2, in text, put nothing at all, so it should be invisible to the naked eye. Now, double-click on your button. You will see about 4 lines of code, which mean that when button is clicked on, this function will occur, but we have no function, so when our button is clicked on, nothing happens. Now, put in this code : Code: TextBox1.Text = Int(Rnd() * 4) All that means that when button is clicked on, we will generate one out of four of any of those codes right into the textbox, and each one is different, so that means it will look more realistic. Now, that's it! It now works. It generates keys. Now, we want the program to look nice and appealing, we need to add a icon, name, and backround image to the program. For our tutorial, it is a Win7 pin generator, so name it that. (by going to form-properties-text) You can add a icon by going to properties and going to icon, and browsing for a icon that relates to Windows 7. You can add a backround image if you like, such as this one : http://www.gandex.ru/upl/oboi/u2090_8297_Win7Vienna-wp2.jpg Hope I have helped some people on this forum! Bye, Beck RE: [TuT]How to create a keygenerator in VB.NET [TuT] - Support - 04-05-2010 Thanks, but this doesn't really generate keys, it chooses randomly between you've created. RE: [TuT]How to create a keygenerator in VB.NET [TuT] - Statics - 04-05-2010 (04-05-2010, 12:00 PM)Pi[X]el Wrote: Thanks, but this doesn't really generate keys, it chooses randomly between you've created. Yeah, Thank you but I am not sure it will really work but still good guide man. RE: [TuT]How to create a keygenerator in VB.NET [TuT] - flAmingw0rm - 04-05-2010 Great tutorial there, I might use this in the future. RE: [TuT]How to create a keygenerator in VB.NET [TuT] - Drake™ - 04-05-2010 Not bad. It could be improved and commented, but apart from that, I really like it. RE: [TuT]How to create a keygenerator in VB.NET [TuT] - Beck - 04-05-2010 (04-05-2010, 12:47 PM)Drake™ Wrote: Not bad. It could be improved and commented, but apart from that, I really like it. Thanks Drake! RE: [TuT]How to create a keygenerator in VB.NET [TuT] - S1cKL3R - 04-05-2010 Seen this on YT the other day while browsing some new programs to learn to make. You should make a full explanation video so people aren't just copy and pasting your source. RE: [TuT]How to create a keygenerator in VB.NET [TuT] - «Ðartz™» - 04-05-2010 This isn't really classified as a keygen. A keygen can generate thousands of keys. This only generates the numbers you put in. RE: [TuT]How to create a keygenerator in VB.NET [TuT] - Cybr - 04-05-2010 Great tutorial. Pictures would be nice too, although it's not essential. Nonetheless, nice work. RE: [TuT]How to create a keygenerator in VB.NET [TuT] - Beck - 04-06-2010 (04-05-2010, 06:47 PM)«Ðartz™» Wrote: This isn't really classified as a keygen. True. But the more you put in, the better and more convincing the keygen will be. |