I have a random function built into my application. It works perfectly. Just one problem it runs the exact random path every time you start the application. Therefore the random selection kicks out the same sequence every time. Is there anything else I can add to the code to overcome that problem? Hope it makes sense.
(Code)
Dim Q
Q = Int((68 * Rnd) + 1)
Text5.Text = Q
Thanks
(Code)
Dim Q
Q = Int((68 * Rnd) + 1)
Text5.Text = Q
Thanks
Comment