Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The usage of Randomize statement in VBS

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces "the usage of Randomize sentences in VBS". In daily operation, I believe many people have doubts about the usage of Randomize sentences in VBS. The editor consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubts about "the usage of Randomize sentences in VBS". Next, please follow the editor to study!

Initialize the random number generator.

Randomize [number]

The number parameter can be any valid numeric expression.

Description

Randomize initializes the random number generator of the Rnd function with the number parameter, assigning it a new seed value. 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 time you call the Rnd function (with no arguments), it uses the same number as the seed value, and then uses the last generated value as the seed value.

Note that to repeat the sequence of random numbers, call Rnd with negative arguments immediately before calling Randomize with numeric arguments. Randomize with 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 the random number generator. Do Until Response = vbNo MyValue = Int ((6 * Rnd) + 1) 'produces a random number between 1 and 6. MsgBox MyValue Response = MsgBox ("Roll again?", vbYesNo) Loop so far, the study of "the use of Randomize sentences in VBS" is over. I hope I can solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report