Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
I need to get a six (6) digit random generator?
Message
 
À
29/01/1999 11:17:55
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00181843
Message ID:
00182867
Vues:
13
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?
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform