Hello Guys,
I am very new in VB.NET and I have a small task to generate random numbers in VB.NET.
Please provide me sample of code.
Thanks
Hello Guys,
I am very new in VB.NET and I have a small task to generate random numbers in VB.NET.
Please provide me sample of code.
Other
The following code returns a random number:
The following code returns a random number less than 1000.
The following code returns a random number between min and max:
At some point, you may also want to generate random strings. I have created a method, which takes first parameter as the size of string and second parameter if you want the string to be lowercase.
You can even combine the two methods-RandomNumber and RandomString to generate a combination of random string and numbers. For example, the following code generates a password of length 10 with first 4 letters lowercase, next 4 letters numbers, and last 2 letters as uppercase.
--------------------------------------------------------
Cegonsoft
http://msdn.microsoft.com/en-us/library/system.random.aspx
Dim n as Integer
dim sm as Integer
Redim cntArray(High-Low)
For x as Integer = 0 to Iter
n =rand.Next(Low,High)
sm += 1
cntArray(n-Low) +=1
Next
Dim st1 as string
For x As Integer = 0 to cntArray.Length - 1
st1 = (x +Low).ToString 'The number.
st1 &=" " & cntArray(x).ToString'The count of that number.
st1 &=" " & (100 * cntArray(x) /sm).ToString 'The percent of that number
<your listboxhere>.Items.Add(st1)
Next