Re: Gone Brain dead

2010-10-14 Thread Michael Grant

>
> Any time you have nested hash marks, that's a good sign things
> aren't right.


Too right. Well said.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338164
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Gone Brain dead

2010-10-13 Thread Bobby Hartsfield

And on the right side of all those examples, variables["post#i#_data"]
instead of evaluate()
 
.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 
-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Wednesday, October 13, 2010 4:29 PM
To: cf-talk
Subject: Re: Gone Brain dead


> I must have gone brain dead. Seem to me like I should be able to set field
> names with a value but it's not working. Know I've done something like
this
> before (this is just a sample of function... not the code):
>
> 
>        
>        
>        
> 
>
> I should get 20 fields, column_1 through column_20 but it's not liking the
> #i# being used to build the column_X fields.
>
> What am I doing wrong?

Any time you have nested hash marks, that's a good sign things aren't
right. Replace



with



or



or



Or consider using an array for your column values.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338161
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Gone Brain dead

2010-10-13 Thread Brook Davies

Why use eval at all?


  

  




-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: October-13-10 1:28 PM
To: cf-talk
Subject: Re: Gone Brain dead


> I must have gone brain dead. Seem to me like I should be able to set field
> names with a value but it's not working. Know I've done something like
this
> before (this is just a sample of function... not the code):
>
> 
>        
>        
>        
> 
>
> I should get 20 fields, column_1 through column_20 but it's not liking the
> #i# being used to build the column_X fields.
>
> What am I doing wrong?

Any time you have nested hash marks, that's a good sign things aren't
right. Replace



with



or



or



Or consider using an array for your column values.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338157
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Gone Brain dead

2010-10-13 Thread Justin Scott

> #i# being used to build the column_X fields.

I think the only one Dave didn't mention was the setVariable() function:




-Justin



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338155
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Gone Brain dead

2010-10-13 Thread Eric Cobb

 >"Any time you have nested hash marks, that's a good sign things aren't 
right."

I like that.  I'm going to have to store it in my "quote arsenal". 

Thanks,

Eric Cobb
ECAR Technologies, LLC
http://www.ecartech.com
http://www.cfgears.com



Dave Watts wrote:
>> I must have gone brain dead. Seem to me like I should be able to set field
>> names with a value but it's not working. Know I've done something like this
>> before (this is just a sample of function... not the code):
>>
>> 
>>
>>
>>
>> 
>>
>> I should get 20 fields, column_1 through column_20 but it's not liking the
>> #i# being used to build the column_X fields.
>>
>> What am I doing wrong?
>> 
>
> Any time you have nested hash marks, that's a good sign things aren't
> right. Replace
>
> 
>
> with
>
> 
>
> or
>
> 
>
> or
>
> 
>
> Or consider using an array for your column values.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> http://training.figleaf.com/
>
> Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
> GSA Schedule, and provides the highest caliber vendor-authorized
> instruction at our training centers, online
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338153
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Gone Brain dead

2010-10-13 Thread Dave Watts

> I must have gone brain dead. Seem to me like I should be able to set field
> names with a value but it's not working. Know I've done something like this
> before (this is just a sample of function... not the code):
>
> 
>        
>        
>        
> 
>
> I should get 20 fields, column_1 through column_20 but it's not liking the
> #i# being used to build the column_X fields.
>
> What am I doing wrong?

Any time you have nested hash marks, that's a good sign things aren't
right. Replace



with



or



or



Or consider using an array for your column values.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338152
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Gone Brain dead

2010-10-13 Thread John M Bliss

Why not use an array...?



  


On Wed, Oct 13, 2010 at 3:20 PM, Robert Harrison  wrote:

>
> I must have gone brain dead. Seem to me like I should be able to set field
> names with a value but it's not working. Know I've done something like this
> before (this is just a sample of function... not the code):
>
>
> 
>
>
>
> 
>
> I should get 20 fields, column_1 through column_20 but it's not liking the
> #i# being used to build the column_X fields.
>
> What am I doing wrong?
>
>
> Robert B. Harrison
> Director of Interactive Services
> Austin & Williams
> 125 Kennedy Drive, Suite 100
> Hauppauge NY 11788
> P : 631.231.6600 Ext. 119
> F : 631.434.7022
> http://www.austin-williams.com
>
> Great advertising can't be either/or.  It must be &.
>
> Plug in to our blog: A&W Unplugged
> http://www.austin-williams.com/unplugged
>
>
>
> __ Information from ESET Smart Security, version of virus signature
> database 5529 (20101013) __
>
> The message was checked by ESET Smart Security.
>
> http://www.eset.com
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338151
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Gone Brain dead

2010-10-13 Thread Robert Harrison

I must have gone brain dead. Seem to me like I should be able to set field
names with a value but it's not working. Know I've done something like this
before (this is just a sample of function... not the code):








I should get 20 fields, column_1 through column_20 but it's not liking the
#i# being used to build the column_X fields. 

What am I doing wrong?


Robert B. Harrison
Director of Interactive Services
Austin & Williams
125 Kennedy Drive, Suite 100 
Hauppauge NY 11788
P : 631.231.6600 Ext. 119 
F : 631.434.7022
http://www.austin-williams.com 

Great advertising can't be either/or.  It must be &.

Plug in to our blog: A&W Unplugged
http://www.austin-williams.com/unplugged

 

__ Information from ESET Smart Security, version of virus signature
database 5529 (20101013) __

The message was checked by ESET Smart Security.

http://www.eset.com
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338149
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm