Im working on making a WoW scam in vb, its a UDE code phisher, gamecard phisher and a cd key phisher all in one. I have a code that im using to generate numbers for the Game Card generator, i need to be able to add letters into it for cd keys and UDE Codes. The code that im working with is:
Code:
'64646
Dim r As New Random()
TextBox6.Text = r.Next(1, 9999)
TextBox7.Text = r.Next(1, 999999)
TextBox8.Text = r.Next(1, 99999)
TextBox9.Text = r.Next(1, 999999)
TextBox10.Text = r.Next(1, 9999)
I want to be able to use that but include letters into it and make it all letters for the
Code:
TextBox9.Text = r.Next(1, 999999)
Thanks for the help