RE: array value not found???

2001-01-29 Thread Russel Madere
-Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Friday, January 26, 2001 14:45 To: CF-Talk Subject: array value not found??? I have thise code: cfset Request.arrClassListFromGroupID = ArrayNew(1) cfset temp = ArraySet(Request.arr

Re: array value not found???

2001-01-27 Thread CF
ot; [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, January 26, 2001 6:46 PM Subject: RE: array value not found??? how about using: #temp[variables.testindex]# rather than #Evaluate('Request.arrClassListFromGroupID[#Variables.TestIndex#]')# Joby Bednar Directo

array value not found???

2001-01-26 Thread Todd Ashworth
I have thise code: cfset Request.arrClassListFromGroupID = ArrayNew(1) cfset temp = ArraySet(Request.arrClassListFromGroupID, 1, 7, "0") cfloop from="1" to="7" index="Variables.TestIndex" cfoutput #Evaluate('Request.arrClassListFromGroupID[#Variables.TestIndex#]')# /cfoutput

Re: array value not found???

2001-01-26 Thread Todd Ashworth
That #i# in the error message should be #Variables.TestIndex# That isn't the poblem. Todd Ashworth - Original Message - From: "Todd Ashworth" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 26, 2001 3:44 PM Subject: array value not found??? | I have

RE: array value not found???

2001-01-26 Thread Joby Bednar
To: CF-Talk Subject: array value not found??? I have thise code: cfset Request.arrClassListFromGroupID = ArrayNew(1) cfset temp = ArraySet(Request.arrClassListFromGroupID, 1, 7, "0") cfloop from="1" to="7" index="Variables.TestIn