Hyflex Posted April 3, 2011 Posted April 3, 2011 I need a random string generater to make a 10-15 random number/letter password
somdcomputerguy Posted April 3, 2011 Posted April 3, 2011 Search thru here and the Examples category as well. You'll be overwhelmed with all the returned results. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
enaiman Posted April 4, 2011 Posted April 4, 2011 wow - 300+ posts and you're asking for a random string generator? Did you make all these posts in the Chat forum? Really, I would expect from somebody being around for such a long time to have the basic knowledge to do such a thing - because this is a basic script. SNMP_UDF ... for SNMPv1 and v2c so far, GetBulk and a new example script wannabe "Unbeatable" Tic-Tac-Toe Paper-Scissor-Rock ... try to beat it anyway :)
wakillon Posted April 4, 2011 Posted April 4, 2011 @enaimanSometimes people leave autoit some time and when they come back, the return is hard ! AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts
UEZ Posted April 4, 2011 Posted April 4, 2011 Try this: $pwd = "" Dim $aSpace[3] $digits = 15 For $i = 1 To $digits $aSpace[0] = Chr(Random(65, 90, 1)) ;A-Z $aSpace[1] = Chr(Random(97, 122, 1)) ;a-z $aSpace[2] = Chr(Random(48, 57, 1)) ;0-9 $pwd &= $aSpace[Random(0, 2, 1)] Next ConsoleWrite("Your password (" & $digits & " digits): " & $pwd & @CRLF) MsgBox(0, "Password Generator", "Your password (" & $digits & " digits): " & $pwd) Br, UEZ Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now