Re: listtoArray blank entries

2005-06-29 Thread daniel kessler
I've had trouble getting local UDFs to work on our server. At the U here, they do everything their way and I often can't get things to work and there's no explanation - so often as I can, I self-roll my solution. But it's another reason for me to get that changed. >> This is an ok solution and

Re: listtoArray blank entries

2005-06-29 Thread S . Isaac Dealey
> This is an ok solution and should work - thanks! Welcome, glad I could help... The afforementioned udf from cflib was also worthwhile. s. isaac dealey 954.522.6080 new epoch : isn't it time for a change? add features without fixtures with the onTap open source framework http://www.fusionta

Re: listtoArray blank entries

2005-06-29 Thread daniel kessler
This is an ok solution and should work - thanks! >> >> >> >> >> #arrayLen(myAr)# > >> How do I make it an array that includes all the entries? >> This messes >> up my indexing. I only want it to keep an empty entry or >> empty >> quotes. I'll be lining up 1 through 17 for manipulation >> and

Re: listtoArray blank entries

2005-06-29 Thread S . Isaac Dealey
> > > > > #arrayLen(myAr)# > How do I make it an array that includes all the entries? > This messes > up my indexing. I only want it to keep an empty entry or > empty > quotes. I'll be lining up 1 through 17 for manipulation > and then > inserting into a db and it's all by index. Then t

Re: listtoArray blank entries

2005-06-29 Thread Rodney Enke
You'll have to loop through the list and append each value to the array if you want to capture empty list elements. The following code should work, but I haven't tested it so it might not. #arrayLen(myAr)# - Rod Enke PracticeMatch, Inc. www.practicematch.com

RE: listtoArray blank entries

2005-06-29 Thread Robertson-Ravo, Neil (RX)
CFLIB is your friend. http://www.cflib.org/udf.cfm?ID=1022 -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: 29 June 2005 15:44 To: CF-Talk Subject: listtoArray blank entries #arrayLen(myAr)# How do I make it an array that includes all the entries? This m