kenneth.campos
Registered User.
- Local time
- Today, 18:58
- Joined
- Jan 2, 2010
- Messages
- 11
My code:
I want to see each number, then have it overwritten by the next number. Slow enough to see the number. Right now the loop either goes so fast or I only get the last loop to output to the form. I want to be able to see each loop output.
Code:
Dim rfoct As Integer
For i = 1 To 5
rfoct = Int((999 - 100 + 1) * Rnd + 100)
Form_MyForm.MyField = rfoct
Next i