RE: populate the damn array

2003-06-11 Thread Bryan Love
just move ad = StructNew(); inside the for loop and problem solved. The reason it's doing that is because you only declared structNew once. When you declare structNew it causes the variable (ad) to point to a memory address (let's use 0x1234 for this example). You then add this memory address to

RE: populate the damn array

2003-06-11 Thread Ian Skinner
Just a quick guess from what I remember when I've done stuff like this, try putting your temp struct in the loop. cfscript Manifest=Replace(manifest, chr(09), ;, ALL); ListFileLen=ListLen(Manifest, #chr(10)##chr(13)#); container = ArrayNew(1);

RE: populate the damn array

2003-06-11 Thread Owens, Howard
Great explanation, Bryan. Thanks. And it worked. H. -Original Message- From: Bryan Love [SMTP:[EMAIL PROTECTED] Sent: Wednesday, June 11, 2003 11:50 AM To: CF-Talk Subject: RE: populate the damn array just move ad = StructNew(); inside the for loop and problem solved