[Solved] Randomly choosing a letter in textbox to be upper or lower cased [closed]
[ad_1] You can try this: explanations will be given as comments Dim input As String = TextBox2.Text ‘<— this should be input “Hello I am Greg” TextBox2.Text = “” ‘<— clear the textbox to store output Dim rnd As New Random ‘<—- generating new random number For Each c As Char In input ‘<— iterate … Read more