Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
I need to get a six (6) digit random generator?
Message
 
 
To
29/01/1999 11:17:55
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00181843
Message ID:
00182867
Views:
14
From a footprint perspective, I would recommend you do this in VB. However, here is the VFP Code:

Local nOldDec,nRand
nOldDec = Set("decimal")
Set Decimals To 6
nRand = 0
Do While nRand < 100000
nRand = Int(rand()*1000000)
EndDo
Set Decimal To &nOldDec
Return x


>I need to get a six (6) digit random generator?
>This needs to be a small program that runs in win95.
>Any ideas?
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform