All you need is a Button1 and a TextBox1
Download Exe: http://elitetactics.sytes.net/random.exe
Hope you like.Code:Public Class Form1 Public Function RandomNumber(ByVal low As Int32, ByVal high As Int32) As Integer Static RandomNumGen As New System.Random Return RandomNumGen.Next(100, 1000000000 + 1) End Function Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click TextBox1.Text = RandomNumber(1, 999999999 + 1045300) End Sub End Class
How to use the function = RandomNumber(LOW, HIGH + NUMBERTOADD)



Reply With Quote![[VBNET][OS] Random Number Generator](http://ragezone.com/hyper728.png)

