Programming Reference Manual
 
Syntax
 
Randomize [Seed]
 
Description
Randomize the random number generator.
 
Parameter
Description
Seed
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