Re: Random Password

2004-02-01 Thread Critter
oi Stuart!! have a gander at www.cflib.org there are a few results for a "password" search /crit -- =-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-= =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-= Sunday, February 1, 2004, 12:44:48 PM, you wrot

RE: Random Password

2004-02-01 Thread Stuart Kidd
[mailto:[EMAIL PROTECTED] Sent: 01 February 2004 18:37 To: CF-Talk Subject: Re: Random Password oi Stuart!! have a gander at www.cflib.org there are a few results for a "password" search /crit -- =-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son

RE: Random Password

2004-02-01 Thread Michael T. Tangorre
Stuart... Check out some of the UDFs at cflib.org. This is one of them http://www.cflib.org/udf.cfm?ID=258 Search on "Password" and you will see some others. Mike   _   From: Stuart Kidd [mailto:[EMAIL PROTECTED] Sent: Sunday, February 01, 2004 12:45 PM To: CF-Talk Subject: Ra

Re: Random Password

2004-02-01 Thread Critter
Cheers, SK> Stuart SK> -Original Message- SK> From: Critter [mailto:[EMAIL PROTECTED] SK> Sent: 01 February 2004 18:37 SK> To: CF-Talk SK> Subject: Re: Random Password SK> oi Stuart!! SK> have a gander at www.cflib.org there are a few results for a "password

RE: Random Password

2001-05-03 Thread Dylan Bromby
there are some tags in allaire's tag gallery that do that. -Original Message- From: Chris Badouin [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 9:24 AM To: CF-Talk Subject: Random Password All- Sorry I am pressed for time today, but does any one have script for generating ran

RE: Random Password

2001-05-03 Thread Robert Long
Here's one I use to create a random numeric password... hth -Original Message- From: Chris Badouin [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 11:24 AM To: CF-Talk Subject: Random Password All- Sorry I am pressed for time today, but does any one have script for generating

RE: Random Password

2001-05-03 Thread Bill Simpson
This should work: This will generate a random 8 character password if you need a different length then just change 'to' in the cfloop tag. -Original Message- From: Chris Badouin [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 9:24 AM To: CF-Talk Subject: Random Pass

RE: Random Password

2001-05-03 Thread Chris Martin
Here's one I got off this list a while ago. Props to whoever wrote it, because its helped me out a few times. random_word = Mid("ABCDEFGHIJKLMNOPQRSTUVWXYZ", RandRange(1,26), 1); random_word = random_word & Mid("ABCDEFGHIJKLMNOPQRSTUVWXYZ", RandRange(1,26), 1); random_wo

RE: Random Password

2001-05-03 Thread Peter Tilbrook
password = "" ; for (c=1; c le 7; c=c+1) {password = password & chr(randRange(65,90)) ; } password = password & randRange(1000,) ; -Original Message- From: Chris Badouin [mailto:[EMAIL PROTECTED]] Sent: Friday, 4 May 2001 02:24 To: CF-Talk Subject: Random Password All- Sorry I am

Re: Random Password

2001-05-03 Thread Pablo Varando
: Thursday, May 03, 2001 3:08 PM Subject: RE: Random Password > Here's one I use to create a random numeric password... > > > hth > > -Original Message- > From: Chris Badouin [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 03, 2001 11:24 AM > To: CF-Talk

RE: Random Password

2001-05-03 Thread Tony Schreiber
I've used something like that too, wanting to keep it a consistent number of digits (and you should seed the random with something prior): > Here's one I use to create a random numeric password... > > > hth > > -Original Message- > From: Chris Badouin [mailto:[EMAIL PROTECTED]] > Se

RE: Random Password

2001-05-03 Thread Peter Stolz
utes.CharStart),Asc(Attributes.CharEnd))); } SetVariable("Caller.#Attributes.OutputVar#",result); P. -Original Message- From: Chris Martin [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 5:38 PM To: CF-Talk Subject: RE: Random Password Here's one I got off thi