Creating Random HEX values

2006-04-06 Thread Ken Fused
I need to create random six digit Hex values for a assigning unique, non-sequential values as IDs. I would prefer not to use zeros. Althought I could replace o(ohs) with 0(zeros) when the number is manually entered back into the system. Any ideas?

RE: Creating Random HEX values

2006-04-06 Thread Dave Francis
random and unique are mutually exclusive. -Original Message- From: Ken Fused [mailto:[EMAIL PROTECTED] Sent: Thursday, April 06, 2006 10:47 AM To: CF-Talk Subject: Creating Random HEX values I need to create random six digit Hex values for a assigning unique, non-sequential values

RE: Creating Random HEX values

2006-04-06 Thread Andy Matthews
To: CF-Talk Subject: Creating Random HEX values I need to create random six digit Hex values for a assigning unique, non-sequential values as IDs. I would prefer not to use zeros. Althought I could replace o(ohs) with 0(zeros) when the number is manually entered back into the system. Any ideas

Re: Creating Random HEX values

2006-04-06 Thread Rob Wilkerson
Subject: Creating Random HEX values I need to create random six digit Hex values for a assigning unique, non-sequential values as IDs. I would prefer not to use zeros. Althought I could replace o(ohs) with 0(zeros) when the number is manually entered back into the system. Any ideas

Re: Creating Random HEX values

2006-04-06 Thread Ken Fused
Subject: Creating Random HEX values I need to create random six digit Hex values for a assigning unique, non-sequential values as IDs. I would prefer not to use zeros. Althought I could replace o(ohs) with 0(zeros) when the number is manually entered back into the system. Any ideas

RE: Creating Random HEX values

2006-04-06 Thread Andy Matthews
--//- -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Thursday, April 06, 2006 10:02 AM To: CF-Talk Subject: Re: Creating Random HEX values Looking at this, though, I don't see any indication that randomness is guaranteed which might become a problem

Re: Creating Random HEX values

2006-04-06 Thread Ken Fused
--//- -Original Message- From: Ken Fused [mailto:[EMAIL PROTECTED] Sent: Thursday, April 06, 2006 9:47 AM To: CF-Talk Subject: Creating Random HEX values I need to create random six digit Hex values for a assigning unique, non-sequential values as IDs. I would prefer not to use zeros

RE: Creating Random HEX values

2006-04-06 Thread Munson, Jacob
This project sounds awesome, and I'm glad to see that there truly are people out there that care about their kids (or even care to /have/ kids, for that matter). :D -Original Message- From: Ken Fused [mailto:[EMAIL PROTECTED] Sent: Thursday, April 06, 2006 9:33 AM This will be

Re: Creating Random HEX values

2006-04-06 Thread Rob Wilkerson
!//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Ken Fused [mailto:[EMAIL PROTECTED] Sent: Thursday, April 06, 2006 9:47 AM To: CF-Talk Subject: Creating Random HEX values I need

RE: Creating Random HEX values

2006-04-06 Thread Andy Matthews
10:33 AM To: CF-Talk Subject: Re: Creating Random HEX values Thank you Andy this works great. Thank you. I removed the 0 and now I get random 6 digit hex values that do not contain Zeros. As the numbers are generated I'll check them against the values that exist in the DB before adding them