Visual Basic Random String Generator

Introduction: This tutorial is on how to create a simple random string generation tool in Visual Basic. Steps of Creation: Step 1: First, we will need the Import of System.Random so we can generate a random integer.
  1.         Imports System.Random
Step 2: Now, we are going to add five buttons to our project, one numericupdown and one textbox. Keep all the names the same as default as we only need to use "textbox1" in the code. The buttons will: - Generate the string - Add the alphabet to our possible characters - Add the capitalized alphabet to our possible characters - Add numeric values to our possible characters - Add punctuation to our possible characters Step 3: Let's make the adding functions first as we will be using the possible characters for the generate event. These are all simple and just add the string input in to the end of the textbox1.text:
  1.     Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
  2.         TextBox1.AppendText("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
  3.     End Sub
  4.  
  5.     Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
  6.         TextBox1.AppendText("abcdefghijklmnopqrstuvwxyz")
  7.     End Sub
  8.  
  9.     Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
  10.         TextBox1.AppendText("0123456789")
  11.     End Sub
  12.  
  13.     Private Sub Button5_Click(sender As Object, e As EventArgs) Handles Button5.Click
  14.         TextBox1.AppendText("!""?.,;:/")
  15.     End Sub
Step 4: Now, let's use that textbox1.text to generate a random string. Double click on the generate button and enter this code:
  1.     Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
  2.         Dim chars As Char() = TextBox1.Text.ToCharArray()
  3.         Dim total As Integer = NumericUpDown1.Value
  4.         Dim cur As Integer = 0
  5.         Dim endStr As String = ""
  6.         Dim r As New Random
  7.         Do Until cur >= total
  8.             Dim rr As Integer = r.Next(chars.Count())
  9.             endStr &= chars(rr)
  10.             rr = Nothing
  11.             cur += 1
  12.         Loop
  13.         MsgBox(endStr)
  14.     End Sub
First we create a chars array which is each character in our textbox1.text so we can select single characters later on. Next we get the total of chars wanted in the random string but getting the numericupdown value. After that we create cur to hold the current index of our generated string while generating Then we create the string which is being used to hold the current generated string Finally we create our random object as r. Then we simple get a new random number with the maximum number being the amount of possible chars and add the chosen char (the index of our random integer in our chars array) to the end of our endstr returning string. After that we simply reset the randomly generated integer to nothing and plus one on to cur. Then we simply msgbox the end generated string, done! Project Complete! Below you will find the full source code and a download to the solution file:
  1. Imports System.Random
  2. Public Class Form1
  3.  
  4.     Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
  5.         Dim chars As Char() = TextBox1.Text.ToCharArray()
  6.         Dim total As Integer = NumericUpDown1.Value
  7.         Dim cur As Integer = 0
  8.         Dim endStr As String = ""
  9.         Dim r As New Random
  10.         Do Until cur >= total
  11.             Dim rr As Integer = r.Next(chars.Count())
  12.             endStr &= chars(rr)
  13.             rr = Nothing
  14.             cur += 1
  15.         Loop
  16.         MsgBox(endStr)
  17.     End Sub
  18.  
  19.     Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
  20.         TextBox1.AppendText("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
  21.     End Sub
  22.  
  23.     Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
  24.         TextBox1.AppendText("abcdefghijklmnopqrstuvwxyz")
  25.     End Sub
  26.  
  27.     Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
  28.         TextBox1.AppendText("0123456789")
  29.     End Sub
  30.  
  31.     Private Sub Button5_Click(sender As Object, e As EventArgs) Handles Button5.Click
  32.         TextBox1.AppendText("!""?.,;:/")
  33.     End Sub
  34. End Class

Add new comment