Random: NextRange |
Returns the next generated number in the sequence within a specified range.
Public Function NextRange( ByVal MinValue As Long, ByVal MaxValue As Long ) As Long
The number generated will always be equal to or greater than minValue, and less than maxValue. The number will never equal maxValue.