So I am trying to find the right code to generate this-like codes: 61NS4-AGHLE-1AJP6-KA2AY
I have the right code in an old VB program I coded ages ago. maybe anyone could suggest something useful. :)
Public Function generatecode() As Object
Dim obj8 As Object
Dim obj11 As Object
Dim obj6 As Object = "QWEYXWQ10203451QWEYXKP067088090ABCDEFGXDRHJKUPJAQWWXY"
Dim left As Object = Strings.Len(RuntimeHelpers.GetObjectValue(obj6))
Dim limit As Object = 5
VBMath.Randomize()
Dim obj7 As Object = ""
If ForLoopControl.ForLoopInitObj(obj8, 1, limit, 1, obj11, obj8) Then
Do
' Dim objectValue As Object = RuntimeHelpers.GetObjectValue(Conversion.Int(Operators.AddObject(Operators.MultiplyObject(left, VBMath.Rnd), 1)))
' obj7 = Operators.ConcatenateObject(obj7, Strings.Mid(Conversions.ToString(obj6), Conversions.ToInteger(objectValue), 1))
Loop While ForLoopControl.ForNextCheckObj(obj8, obj11, obj8)
End If
Return RuntimeHelpers.GetObjectValue(obj7)
End Function
Private Function GenerateString(ByVal length As Integer, ByVal content As Integer, ByVal casing As Integer) As String
' the random generators
Dim r, r1, r2 As New Random
'the final generated string
Dim gString As String = String.Empty
Dim LowAlph As String = "abcdefghijklmnopqrstuvwxyz"
Dim UppAlph As String = LowAlph.ToUpper
Dim addLetter As Char
Do Until gString.Length = length
Select Case casing
Case 0
Select Case r.Next(0, 2)
Case 0
addLetter = LowAlph.Substring(r1.Next(0, 25), 1)
Case 1
addLetter = UppAlph.Substring(r1.Next(0, 25), 1)
End Select
Case 1
addLetter = LowAlph.Substring(r1.Next(0, 25), 1)
Case 2
addLetter = UppAlph.Substring(r1.Next(0, 25), 1)
End Select
'add the next character to "gString"
Select Case content
Case 0
Select Case r.Next(0, 2)
Case 0
gString &= addLetter
Case 1
gString &= r1.Next(TextBox6.Text, TextBox5.Text) ' (0, 9)
Case 2
gString &= addLetter
End Select
Case 1
gString &= r1.Next(TextBox6.Text, TextBox5.Text) '(0, 9)
Case 2
gString &= addLetter
End Select
Loop
Return gString
End Function
Function RandomString(cb As Integer) As String
Randomize()
Dim rgch As String
rgch = "abcdefghijklmnopqrstuvwxyz"
rgch = rgch & UCase(rgch) & "0123456789"
Dim i As Long
For i = 1 To cb
RandomString = RandomString & Mid$(rgch, Int(Rnd() * Len(rgch) + 1), 1)
RandomString = textbox1.text
Next
End Function
Public Function RandomString( _
ByVal length As Long, _
Optional charset As String = "abcdefghijklmnopqrstuvwxyz0123456789" _
) As String
Dim chars() As Byte, value() As Byte, chrUprBnd As Long, i As Long
If length > 0& Then
Randomize()
' chars = charset
chrUprBnd = Len(charset) - 1&
length = (length * 2&) - 1&
ReDim value(length)
For i = 0& To length Step 2&
value(i) = chars(CLng(chrUprBnd * Rnd) * 2&)
Next
End If
' RandomString = value
End Function
I don't remember anymore how it used to work :/.
You could look into the C# Random class:
http://msdn.microsoft.com/en-us/library/system.random%28v=vs.110%29.aspx