RE: Looping through an Array....

2003-08-24 Thread Les Mizzell
OK, I'm an idiot! I actually asked almost the same question a month and a half ago! Here's the solution: #roomVAR[i][1]# #roomVAR[i][2]# #roomVAR[i][3]# #roomVAR[i][4]# *** :<>: -Original Message- :<>: From: Les Mizzell [mailto:[EMAIL PROTECTED] :<>: Sent: Saturda

RE: Looping through an Array

2000-06-30 Thread Kevin Marshall
Gene, You can loop through 2/3D arrays like this: ...load the array... #mytest[outerloop][innerloop]# The same holds true in 3d - just add an additional loop. Note that you must reference the particular dimension element you are in when starting a new loop

RE: Looping through an Array

2000-06-30 Thread kraybill
Taking this one step further, I'd be interested in seeing an example of the best way to loop through a 3-dim array. ArrayLen only shows the length of the first dimension - how do you determine the size of the 2nd and 3rd? Gene Kraybill > > Is there a way that i can loop through an array and

Re: Looping through an Array

2000-06-29 Thread KJis18
my C++ skills failed to come back to me for a few mins -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message t

Re: Looping through an Array

2000-06-29 Thread KJis18
Thank you so much !!! :) -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubs

RE: Looping through an Array

2000-06-29 Thread Dave Watts
> Is there a way that i can loop through an array and display > all the items Why, certainly: Item #i#: #myarray[i]# Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 --