I want to get a number between 65 and 90 (ascii A-Z) I'm using the following but it aint working.
VB Code:
For z = 1 To 4 Randomize Num = Round(Rnd * 218 + Rnd * 2, 0) blncontinue = True While blncontinue = True Cool = Num If Cool < 65 And Not Cool > 90 Then 'This is where I need help please Randomize Num = Round(Rnd * 218 + Rnd * 2, 0) Else blncontinue = False End If Wend randomString = randomString & Chr(Num) Next z




Reply With Quote