Please help me!! I need to generate three random numbers and display them in a label. The thing is i need to make the numbers keep changing for three seconds within the label and then stop. You must see them changing. I can only get the numbers to generate once when putting the following code under the button click event. When i put it under the timers tick event it changes but only after every three seconds. Please tell me how i can change the numbers again and again within the label for three seconds and then stop.
Dim num1, num2, num3 As Integer
num1 = Int(9 * Rnd() + 0)
num2 = Int(9 * Rnd() + 0)
num3 = Int(9 * Rnd() + 0)
Me.label1.Text = num1
Me.label2.Text = num2
Me.label3.Text = num3
Dim num1, num2, num3 As Integer
num1 = Int(9 * Rnd() + 0)
num2 = Int(9 * Rnd() + 0)
num3 = Int(9 * Rnd() + 0)
Me.label1.Text = num1
Me.label2.Text = num2
Me.label3.Text = num3