Hackers Name Generator Using VB.Net
Hey Geeeks Welcome To The New Post, Today I'm Gonna Showing You How To Create VB.Net Application For Generating Random Hackers Name.......
So Lets Start.....
1. Open Visual Studio, and select vb.net form application.
2. Now Draw Following Things On Form......
-one textbox
-two buttons(generate, copy_name)
-listbox (Add many names line by line in listbox)
3.Write Imports System.IO above the class name And Declare a Variable Dim rnd As New Random within the class.
4. now double click on generate button and write the below code...
- TextBox1.Text = ListBox1.Items(rnd.Next(292))
292 is a number of lines that are present in your listbox(i have 292 names)
5. now double click on generate button and write the below code...
- Clipboard.SetText(TextBox1.Text)
Now Run The Program! Don't Forget To Give Us Credit While Sharing Our Software.....
So Lets Start.....
1. Open Visual Studio, and select vb.net form application.
2. Now Draw Following Things On Form......
-one textbox
-listbox (Add many names line by line in listbox)
3.Write Imports System.IO above the class name And Declare a Variable Dim rnd As New Random within the class.
4. now double click on generate button and write the below code...
- TextBox1.Text = ListBox1.Items(rnd.Next(292))
292 is a number of lines that are present in your listbox(i have 292 names)
5. now double click on generate button and write the below code...
- Clipboard.SetText(TextBox1.Text)
Now Run The Program! Don't Forget To Give Us Credit While Sharing Our Software.....
Comments
Post a Comment