VBS TUTORIAL: VBScript statement-randomize statement _vbs

Source: Internet
Author: User
Tags generator numeric

Randomize statement

Initializes a random number generator.

Randomize [number]

The number argument can be any valid numeric expression.

Description

Randomize Initializes the Rnd function by using the number parameter to assign a new seed value to the random numbers generator. If number is omitted, the value returned by the system timer is used as the new seed value.

If you do not use Randomize, the first call to the Rnd function (without parameters) will use the same number as the seed value, followed by the last generated number as the seed value.

note to repeat the sequence of random numbers, call Rndwith a negative argument immediately before you call Randomize with a numeric argument. Randomize that use the same number value cannot repeat the previous sequence of random numbers.

The following example illustrates how to use the Randomize statement:

Dim MyValue, ResponseRandomize 'Initializes a random number generator. Do Until Response = vbNo       The random number that is generated between.   MsgBox MyValue   Response = MsgBox ("Roll again? ", vbYesNo)Loop

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.