When I set up this bit of code, every time I debug the software it generates the same number. Can anyone tell me why this is happening?
dim value as integer
value = (CInt(Int(100 * Rnd())))
messagebox.show(value)
Because it should be random. here is an example: (From top to bottom)
- I debug the software
- the code runs, and it generates the number 70
- I stop the debugging
- I debug it again and it generates the number 70 again
And that's happening over and over, the first two times I thought it was just luck, but when I did it a couple of times it always came back on the 70 (as an example).
But when I keep the software running and I run the code over and over again, by the use of a button, it generates completely different, and random numbers. Start it back up again and there is the number 70 again.
You need to call
Before you call Rnd() to initialize your random num ber generator. If you don't, every time that you run the program you will get the same sequence of numbers.
Example:
The reason is that the Rnd() will always use the same seed to start the sequence. If you want to read more about it, is very well explained explained here: https://msdn.microsoft.com/en-us/library/8zedbtdt(v=vs.90).aspx
Since this was tagged as .Net you should not be using VB6 legacy functions. For .Net use the Random Class Here is an example that requires a button and a label.
Read the documentation for the details and other uses of the Random class.
edit: If for some reason you decide to continue to use Rnd, then call Randomize before using it.
The reason you get the same random number each time is that when the program runs, it always starts with the same seed number for generating the first random number. To change the seed, you can add this ..
into your code's _load event. This changes the seed based on the time.
Alternatively, you could use the following code as this doesn't need to call 'Randomize' each time the program is run, and it is much easier to control the range of numbers generated. For example instead of random numbers in the range of 0 to 100 as per the code below, you could choose to generate numbers from 45 to 967 or any other range you like, just by changing the parameters of the second line.
Its probably better to declare randomGenerator as project wide variable rather than keep re-declaring it in a code block - This is because it uses the time as the seed.
If the declaration is in a tight loop that iterates over small intervals of time, the seed might sometimes be the same for each time the variable is declared and you could end up with the same number being generated multiple times. For example - This is how not to do it :-