Randomize Instruction

Syntax:
Randomize
Group: Math
Description:
Randomize the random number generator.
See Also: Rnd( ).
Example:

Sub Main
Randomize
Debug
.Print Rnd ' 0.??????????????
End
Sub