RE: Numeric Form Field Names...

2002-04-16 Thread Houk, Gary
Thanks guys, it looks like it will work :-) - Gary -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 1:16 PM To: CF-Talk Subject: RE: Numeric Form Field Names... I do something like that, but use a regex that works no matter how many

RE: Numeric Form Field Names...

2002-04-16 Thread Matt Robertson
: Tuesday, April 16, 2002 10:01 AM To: CF-Talk Subject: Re: Numeric Form Field Names... just do it so that you have something like #form.field_1# and if you just want the 1 out of it, do a #right(form.fieldNames, 1)# to get he desired field numbers "Success is a journey, not a destin

RE: Numeric Form Field Names...

2002-04-16 Thread Boardwine, David L.
this code works HTH DavidB -Original Message- From: Houk, Gary [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 12:50 PM To: CF-Talk Subject: Numeric Form Field Names... I have an online survey that I built. The questions are dynamically drawn from a table.

Re: Numeric Form Field Names...

2002-04-16 Thread Douglas Brown
just do it so that you have something like #form.field_1# and if you just want the 1 out of it, do a #right(form.fieldNames, 1)# to get he desired field numbers "Success is a journey, not a destination!!" Doug Brown - Original Message - From: "Houk, Gary" <[EMAIL PROTECTED]> To: "CF-T

Re: Numeric Form Field Names...

2002-04-16 Thread mynews
You can put a "q" in front to make it an acceptable variable name and then strip it off in the processing code. Bjorno = = = Original message = = = I have an online survey that I built. The questions are dynamically drawn from a table. The radio button values are drawn from a different table.