Randomize Instruction
Syntax
Randomize [Seed]
Group
Description
Randomize the random number generator.
Parameters |
Description |
This numeric value sets the initial seed for the random number generator. If this value is omitted then the current time is used as the seed. |
See Also
Example
Sub Main
Randomize
Debug.Print Rnd ' 0.??????????????
End Sub