[cfaussie] Re: OT: what Eclipse DB plugin do you use (for SQLServer)?

2006-06-19 Thread Gareth Edwards
I've been using the SQL Editor that ships with the Flex 2 beta 3 Coldfusion plugin packages. Although it kinda sucks. Another quick question, since we are on the topic, how many people are using Eclipse 3.2? Cheers Gareth. Tom MacKean wrote: I use Quantum to talk to Navision (which runs

[cfaussie] Flex Release Date/Pricing

2006-06-19 Thread Darren Tracey
I saw this on the User Group Manager list. Haven't seen it posted here yet so thought people might like to know. -- I saw this come across the wire on Flexcoders but didn't see any Adobe folks respond.

[cfaussie] Adobe Announces Resignation of President, Stephen Elop, who was formerly CEO of Macromedia.

2006-06-19 Thread Darren Tracey
Another post from the User Group Manager list. None of the text below is mine. - fyi ... following are excerpts from this link: www.publish.com/article2/0,1895,1977422,00.asp Adobe Announces Resignation of President,

[cfaussie] Re: Flex Release Date/Pricing

2006-06-19 Thread Darren Tracey
Should have said that the prices were all in US$ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send

[cfaussie] Re: OT: what Eclipse DB plugin do you use (for SQLServer)?

2006-06-19 Thread Barry Beattie
won't touch 3.2 until the next vers of cfeclipse is happy with it. PS: thanx for the db editor tips, going by the website SQLServer for Quantum wasn't mentioned. On 6/19/06, Gareth Edwards [EMAIL PROTECTED] wrote: I've been using the SQL Editor that ships with the Flex 2 beta 3 Coldfusion

[cfaussie] Re: inserting carage returns

2006-06-19 Thread Joel Cass
Just because no-one else pointed it out cfset crlf = #chr(10)# #chr(13)# Should be cfset crlf = #chr(13)# #chr(10)# chr(13) = Carriage return chr(10) = line feed Joel -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of cfgroupie Sent: Monday, 19

[cfaussie] Re: Flex Release Date/Pricing

2006-06-19 Thread Gareth Edwards
Do you have any details on what FDS Express will provide? will it have limited users? Cheers Gareth. Darren Tracey wrote: I saw this on the User Group Manager list. Haven't seen it posted here yet so thought people might like to know.

[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-19 Thread Andrew Scott
Hmmm, Wouldn't, Obj = CreateObject('java','java.package.class').method(arg1,arg2,arg3); Work ? Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 --~--~-~--~~~---~--~~ You received this message

[cfaussie] Re: inserting carage returns

2006-06-19 Thread Dale Fraser
Yeah, And drop the #'s cfset crlf = chr(13) chr(10) / Regards Dale Fraser -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joel Cass Sent: Tuesday, 20 June 2006 09:37 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: inserting carage

[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-19 Thread Scott Arbeitman
No, because the cfx_j tag uses the CALLER scope to set local variables. So it kinda returns multiple variables. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie group. To post to this group, send email to

[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-19 Thread Andrew Scott
Hmm, Doesn't make sense to me, for example Test = obj.method(arg1,arg2); Would return and set the variables too:) Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 -Original Message- From: cfaussie@googlegroups.com

[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-19 Thread Steve Onnis
i think what he is saying is that instead of doing return var in the tag, it's doing caller.someVar = bla in which case as per your example Andrew, the variable Test would actually be equal to nothing at all. Any chance of seeing some of your code Scott? Steve -Original Message- From:

[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-19 Thread Blair McKenzie
Use the attributecollection attribute of the tag. Just pass in the arguments struct of the method to this attribute in the hard coded tag.cffunction name=yourFunction output=true cfx_j attributecollection=arguments/cffunctionOn 6/20/06, Scott Arbeitman [EMAIL PROTECTED] wrote: No, because the

[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-19 Thread Scott Arbeitman
cfcomponent namespace=CfxjInvoker hint=Invokers Java objects using the cfx_j tag. Returns a structure with all the variables set by the tag as name-value pairs. These are the values that would otherwise be in the VARIABLES scope if you used the tag directly on a page.

[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-19 Thread Steve Onnis
what the b-jesus is that? I would certainly be looking at another way of doing this because that certainly isn't going to work can you call the object directly using createObject() as Andrew suggested?? you must have a jar file around somewhere for the cfx tag to work Steve -Original

[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-19 Thread Scott Arbeitman
argcollection does not work. It expects the attributes to be hard-coded. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe

[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-19 Thread Chris Velevitch
On 6/20/06, Scott Arbeitman [EMAIL PROTECTED] wrote: a valid cfx_j call, and execute it using Evaluate. This should cause Doesn't the evaluate function only string expressions? Looking at your example, your are doing the equivalent of createobject. Perhaps you might consider using createobject

[cfaussie] Re: OT: what Eclipse DB plugin do you use (for SQLServer)?

2006-06-19 Thread Greg Stewart
As far as I can tell cfeclipse (well at least the BER release) works really nicely with 3.2 RC4. Cheers G On 6/20/06, Barry Beattie [EMAIL PROTECTED] wrote: won't touch 3.2 until the next vers of cfeclipse is happy with it. PS: thanx for the db editor tips, going by the website SQLServer