Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Get a random password
Message
From
17/09/2003 15:12:01
Hilmar Zonneveld
Independent Consultant
Cochabamba, Bolivia
 
 
To
17/09/2003 15:00:58
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00830033
Message ID:
00830042
Views:
28
>i want to generate a random password how can i do

Only uppercase letters, 6 characters:
local lcPassword, i
lcPassword = ""
rand(-1)
for i = 1 to 6
  lcPassword = lcPassword + 64 + int(26 * rand())
next
? lcPassword
HTH,

Hilmar.
Difference in opinions hath cost many millions of lives: for instance, whether flesh be bread, or bread be flesh; whether whistling be a vice or a virtue; whether it be better to kiss a post, or throw it into the fire... (from Gulliver's Travels)
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform