Re: How can I restate this without using EVALUATE?

2008-06-20 Thread Josh Nathanson
> In a calling page: > > > > > > #myResult# Does anyone know why in CF you can't do this: When you return a function, you can't then call it with arguments. Is it because functions in CF are actually separate classes? I like in javascript how you can do stuff like that. -- Josh ~~

Re: How can I restate this without using EVALUATE?

2008-06-19 Thread James Holmes
Message- > From: James Holmes > Sent: Thursday, June 19, 2008 8:42 PM > To: CF-Talk > Subject: Re: How can I restate this without using EVALUATE? > > Actually it can, technically speaking, although why you'd do this is beyond > me: -- mxAjax / CFAjax docs and

RE: How can I restate this without using EVALUATE?

2008-06-19 Thread Mark Kruger
This is done frequently in frameworks that use controllers (ie model glue) -mark Mark A. Kruger, CFG, MCSE www.coldfusionmuse.com -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Thursday, June 19, 2008 8:42 PM To: CF-Talk Subject: Re: How can I restate this

Re: How can I restate this without using EVALUATE?

2008-06-19 Thread James Holmes
Actually it can, technically speaking, although why you'd do this is beyond me: In dynamictest.cfc: In a calling page: #myResult# On Fri, Jun 20, 2008

Re: How can I restate this without using EVALUATE?

2008-06-19 Thread Brad Haas
Thanks Matt & João. I appreciate your help. >argumentCollection="#args#" returnvariable="methodResults"/> >-- > >João Fernandes > >http://www.onflexwithcf.org >http://www.riapt.org >Portugal Adobe User Group (http://aug.riapt.org) ~~~

Re: How can I restate this without using EVALUATE?

2008-06-19 Thread Jo�o_Fernandes
-- João Fernandes http://www.onflexwithcf.org http://www.riapt.org Portugal Adobe User Group (http://aug.riapt.org) ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: How can I restate this without using EVALUATE?

2008-06-19 Thread Matt Williams
Can't be done in a regular cfset On Thu, Jun 19, 2008 at 4:14 PM, Brad Haas <[EMAIL PROTECTED]> wrote: > I know using evaluate is a no-no, but I'm stumped on how to restate this line > of code: > > > > Any help would be appreciated. > > ~~~