I am used on other programming languages which let you set the distribution you want to use on a random number generator. I tried to find in docs the same for VB6, but I cannot even tell which distribution uses. (I guess it is the uniform)
Here is the documentation
And it easy to use as: Public Shared Function Rnd[(Number)] As Single
I still want to generate a random number between 0 and 1, but instead of uniform (or what the default Rnd uses), I want the normal distribution. Is there any way to do this in VB6 or you need a custom function?