I have tried two way to create a random number thing.

here is the two way i used.

Dim chooseNo As New Random()
RanCol = chooseNo.Next(0, 6)


Dim RanTurns As Integer
Randomize()

RanTurns = CInt(Int((100 * Rnd()) + 1))

NOW both of them work fine ^^ , well that what i thought after so many goes i get a stack error

do i use a try block to ingore the error or do i have to do something else to clear the stack in the randomize()