[cfaussie] Re: Flex 2

2006-06-27 Thread Angus Johnson
as well as the Coldfusion 7 update ...http://www.adobe.com/support/coldfusion/downloads_updates.html#mx7 On 28/06/06, KNOTT, Brian <[EMAIL PROTECTED]> wrote: You those of you that are interested Flex 2 is now available from the Adobe site.   http://www.adobe.com/products/flex/?promo

[cfaussie] Flex 2

2006-06-27 Thread KNOTT, Brian
You those of you that are interested Flex 2 is now available from the Adobe site.   http://www.adobe.com/products/flex/?promoid=BINV   Brian Knott --- This e-mail is sent by Suncorp-Metway Limited ABN

[cfaussie] Re: Diagnosing CFMAIL and javax.mail... exceptions

2006-06-27 Thread David Grubb
Thanks Steve, I have the same thought, I'm just unsure as to why these 40 in particular fail to send every time: other mails have failed, but are sent successfully on the 2nd attempt a few minutes later - these have failed consistently for 5 or 6 attempts... Nothing about the emails appear to be un

[cfaussie] Re: Diagnosing CFMAIL and javax.mail... exceptions

2006-06-27 Thread Steve Onnis
sounds like it couldnt connect to the mail server your trying to send mail out from -Original Message-From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]On Behalf Of David GrubbSent: Wednesday, June 28, 2006 1:57 PMTo: cfaussie@googlegroups.comSubject: [cfaussie] Diag

[cfaussie] Diagnosing CFMAIL and javax.mail... exceptions

2006-06-27 Thread David Grubb
Hi all,Just wondering if someone could point me in the direction of resources to diagnose exception issues with CFMAIL?I'm encountering a problem with an email application that stores emails to a database, then loops over the records and uses CFMAIL with spoolenable="false", wrapped in a CFTRY - if

[cfaussie] OT: Dreamweaver - Managing Sites

2006-06-27 Thread Scott Thornton
awesome, exactly what I wanted. >>> [EMAIL PROTECTED] 28/06/2006 12:24 pm >>> In Preferences > Site make sure both Prompt on Get/Check Out and Prompt on Put/Check in. The next time you upload, it will ask you if you want to upload dependent files as well. Choose no and Don't show this again. It

[cfaussie] Re: OT: Dreamweaver - Managing Sites

2006-06-27 Thread Tom MacKean
In Preferences > Site make sure both Prompt on Get/Check Out and Prompt on Put/Check in. The next time you upload, it will ask you if you want to upload dependent files as well. Choose no and Don't show this again. It remembers your choice   Tom  On 6/28/06, Andrew Scott <[EMAIL PROTECTED]> wrote:

[cfaussie] Re: OT: Dreamweaver - Managing Sites

2006-06-27 Thread Andrew Scott
Some how you must have told it that you wanted to save all dependencies, as it usually asks each time you do this by default:-) Look in the settings config. Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 -Original Message- Fro

[cfaussie] OT: Dreamweaver - Managing Sites

2006-06-27 Thread Scott Thornton
Hi, The 'site' I am working with in the moment is insisting on saving around 20-30 related files when I save a single document. These other documents have not changed. Does any know of a setting I may turn off to stop the behaviour? Scott Thornton, Programmer Application Development Informati

[cfaussie] Re: Override CFMX mapping

2006-06-27 Thread Mark Mandel
Only on BlueDragon. Mark On 6/28/06, James Silva <[EMAIL PROTECTED]> wrote: > > Hi, > > Does anyone know if it's possible to override a CF mapping (for a > specific app only)? > > cheers, > > James. > -- E: [EMAIL PROTECTED] W: www.compoundtheory.com ICQ: 3094740 --~--~-~--~~---

[cfaussie] Override CFMX mapping

2006-06-27 Thread James Silva
Hi, Does anyone know if it's possible to override a CF mapping (for a specific app only)? cheers, James. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaus

[cfaussie] Re: QofQ

2006-06-27 Thread Blair McKenzie
Instead of selecting the records between those times, create a new field/column in the query that represents that information. ie (datepart(hour,your_date) * 2 + iif(datepart(minute,your_date) >= 30,1,0) as half_hour Then you can order by that field and use grouping if you want.BlairOn 6/28/06, Rod

[cfaussie] Re: QofQ

2006-06-27 Thread Rod Higgins
Im checking 30 minute increments (datetime) on a date column so Im using the QofQ to determine whether a record exists within a certain start and end time. I will more then likely create an array from the date column and then test against this. I had thought QofQ would be the more elegant ap

[cfaussie] Re: QofQ

2006-06-27 Thread Joel Cass
Hi Rod,   If it's just one field and you are matching dates (ie. date1 = date2), a referential struct may help, ie   ...   Or you may be able to use looping or cfoutput grouping, ie.       #datefield#         #recordDetails#           or           ...             ..

[cfaussie] Re: QofQ

2006-06-27 Thread Rod Higgins
Hi Joel,   The reason Im using QofQ firstly is because Im lazy and secondly because Im using a lot of date/time matching from the source recordset. The source recordset has about 160 odd records so it's not that large. What I am finding though is QofQ is not really that efficient. I was wond

[cfaussie] Re: QofQ

2006-06-27 Thread Joel Cass
As someone who does not use QoQ that often, here are some other ways you can do this:   - If you want to look up a certain value, create a referential struct based on the column you wish to lookup, containing the vital information - If you want to create little queries, you could try query

[cfaussie] Re: Reminder: 01/Adobe Breeze community talks, first session today...

2006-06-27 Thread Bjorn Schultheiss
Can anyone post me the link to the breezoI registered to lateOn 6/28/06, Kai Koenig ( ZeroOne ) <[EMAIL PROTECTED]> wrote: Folks,just as a reminder, the first session of the talks is on today. Start is 12 pm NZ time, that's 90 minutes away from as I'mwriting this.Registration is still possible on:h

[cfaussie] QofQ

2006-06-27 Thread Rod Higgins
When running a page that uses excessive QofQ from a single query the CPU goes bezerk. I was under the impression that QofQ was simply accessing a recordset from memory. I have a couple of questions if anyone has some ideas, workarounds for this. Why does the cfstat utility record QofQ's as D

[cfaussie] Re: Includes

2006-06-27 Thread Patrick Branley
Another point to rememberIf you use custom tags called via CFMODULE or their own variables scope!soApplication.cfmindex.cfmmytag.cfm#tr("test")#wont work since the cfmodule creates a unquie variables scope. The solution is to use either 1. Request Scope2. Application Scopeor 3. a CFC instance / str

[cfaussie] Reminder: 01/Adobe Breeze community talks, first session today...

2006-06-27 Thread Kai Koenig \( ZeroOne \)
Folks, just as a reminder, the first session of the talks is on today. Start is 12 pm NZ time, that's 90 minutes away from as I'm writing this. Registration is still possible on: http://events.adobe.co.uk/events/cgi/event.cgi?country=pa&eventid=3373 ! Please drop me an email offlist to make

[cfaussie] Re: WOT (THE): Ok, it's official, Soccer is a farse

2006-06-27 Thread Sean Bucklar
To quote the radio earlier this afternoon - Is there an Aussie playing at Wimbledon? How long till the next origin match? On 6/27/06, M@ Bourke <[EMAIL PROTECTED]> wrote: > Soccer? > > whats that.. > > Forgotten already. > > Actually I watched the brazil v australia game from munich > and the

[cfaussie] Re: Includes

2006-06-27 Thread Kym Kovan
Hi Dale, butting in on this... Dale Fraser wrote: When you say "write Are you sure? We do it and Mathew does it, everyone does it! :-) Put the in it and you should see the functions there. I just did it on a page I am working on and saw this, in part with various loose items, from th

[cfaussie] Re: Includes

2006-06-27 Thread Dale Fraser
Language Translation > -Original Message- > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Chris Velevitch > Sent: Tuesday, 27 June 2006 7:12 PM > To: cfaussie@googlegroups.com > Subject: [cfaussie] Re: Includes > > > On 6/27/06, Dale Fraser <[EMAIL PROTECTED]>

[cfaussie] Re: Includes

2006-06-27 Thread Chris Velevitch
On 6/27/06, Dale Fraser <[EMAIL PROTECTED]> wrote: > We tried that and it didn't work, however we didn't try it with the function > name application. > > Trying to avoid a long function name as we have to wrap it around every > phrase for translation. Are you talking about character or language t

[cfaussie] Re: Includes

2006-06-27 Thread Dale Fraser
Yes,   We have it working that way, the problem is that it’s long. It’s for website translation.   So lets say we have a string.   Welcome to Earth   We want this as   #tr("Welcome to Earth")#   Rather than   #application.trans.tr("Welcome to Earth")#   It’s especially impor

[cfaussie] Re: Includes

2006-06-27 Thread Dale Fraser
When you say "write -Original Message- > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Matthew > Sent: Tuesday, 27 June 2006 4:53 PM > To: cfaussie > Subject: [cfaussie] Re: Includes > > > The best thing would be to create a file called udf.cfm and write > . T

[cfaussie] Re: Includes

2006-06-27 Thread Dale Fraser
We tried that and it didn't work, however we didn't try it with the function name application. Trying to avoid a long function name as we have to wrap it around every phrase for translation. Regards Dale Fraser > -Original Message- > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTEC

[cfaussie] Re: OT: New Netscape Website (Beta)

2006-06-27 Thread Cratima (Software and Interactive)
Hi Chris,Thank you for the Netscape notification. I use FireFox and Opera myself, so I would like to see some highlights on new Netscape software.The site itself is a bit disappointing for me: although using latest technology (it uses AJAX), the news are not as important as the news I receive from

[cfaussie] Re: Includes

2006-06-27 Thread Blair McKenzie
You could take the next step with this by turning UDF into a component and putting it in application scope. Define it once then access it everywhere.BlairOn 6/27/06, Matthew <[EMAIL PROTECTED]> wrote: The best thing would be to create a file called udf.cfm and write. Then every page would have acc