LOTUSSCRIPT LANGUAGE
Seeds (initializes) the random number generator.
Syntax
Randomize [ numExpr ]
Elements
numExpr
Use Randomize to seed the random number generator before calling Rnd to generate a number.
If you use Randomize with numExpr and then repeatedly call Rnd with no arguments, LotusScript returns the same sequence of random numbers every time you run the script. To generate a different sequence of random numbers each time you run the script, do one of the following:
Example See Also