Rick,

Are you getting any errors?  It looks like you have a 2 dimension array
.but you are setting it to a 3 dimension.

Try <cfset MultipleWaivers=ArrayNew(2)>

Paul Giesenhagen
QuillDesign

----- Original Message -----
From: "Rick Faircloth" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Saturday, September 21, 2002 8:57 PM
Subject: What's wrong with this?


> Can anyone tell me why this code isn't working?
> I've got code on the same page that's doing the exact same thing,
> but with different queries and arrays, and no errors are occuring...
>
> <CFSET MultipleWaivers=ArrayNew(3)>
>
> <CFQUERY Name="GetUC" Datasource="#DSN#">
>      Select UtilityCompanyID, UCName
>         from UtilityCompanies
>   order by UCName
> </CFQUERY>
>
> <CFLOOP Query="GetUC">
>      <CFSET MultipleWaivers[CurrentRow][1] =
> GetUC.UtilityCompanyID[CurrentRow]>
> </CFLOOP>
>
>
>
> Rick
>
>
> 
______________________________________________________________________
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to