Re: Coldfusion Image Gallery

2008-11-04 Thread Azadi Saryev
just posted an answer to your question on EE, but here it is too, for the benefit of others seeking same advice: this is really a javascript (or other CLIENT-side script) question, not CF... have a look at jQuery Cycle plug-in (http://www.malsup.com/jquery/cycle/

Re: coldfusion8 is amazing!

2008-11-04 Thread Will Tomlinson
Don L, impatient?? Naw... ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive:

RE: Script to move email to from undelivr to spool?

2008-11-04 Thread Andy Matthews
My project, the Undelivrnator, can be used for this: http://undelivrnator.riaforge.org/ Simply set up a scheduled task, a table in the db to use as a monitor, and you're good to go. andy -Original Message- From: Nick Gleason [mailto:[EMAIL PROTECTED] Sent: Monday, November 03, 2008

Re: Script to move email to from undelivr to spool?

2008-11-04 Thread Chris Kelly
I simply use this: cfdirectory directory=undelivr action=list name=undelivr cfoutput query=undelivrcffile action=move destination=spool\#undelivr.name# source=undelivr\#undelivr.name# /cfoutput replace undelivr and spool with your actual undelivr and spool directories. Run as often as you

RE: CF DATEDIFF Function

2008-11-04 Thread Dan G. Switzer, II
You should be able to do: fix(tomorrow) - fix(now()) = diff in days CF stores dates as a float, where the integer is the day value and the decimal values are represent the time. So, if you just round down and subtract the two dates you'll get the difference in whole days. -Dan -Original

Re: Update Panel... Coldfusion?

2008-11-04 Thread Ian Skinner
cfdiv http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_d-e_04.html Or any of it's Ajax friends. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Update Panel... Coldfusion?

2008-11-04 Thread Kim Hoopingarner
Thanks! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive:

ColdExt

2008-11-04 Thread Rob Parkhill
Good Day, I have a relatively simple question that I need an answer for. I have just started looking into ColdExt as a client of mine has seen it and likes it. I have downloaded everything and have it running just fine. However, I can't seem to find an example or the smallest shred of code

Re: Update Panel... Coldfusion?

2008-11-04 Thread Gerald Guido
Here are some CF AJAX tools . http://ajaxcfc.riaforge.org/ http://www.indiankey.com/cfajax/ http://cfjqajax.riaforge.org/ http://coldext.riaforge.org/ http://cfext.riaforge.org/ On Tue, Nov 4, 2008 at 11:37 AM, Kim Hoopingarner [EMAIL PROTECTED] wrote: I have been in the ASP.NET / AJAX

Re: ColdExt

2008-11-04 Thread Gerald Guido
You might want to post to the Issue tracker or contact Justin on his blog. http://coldext.riaforge.org/ http://www.madfellas.com/blog/ I had some questions about ColdExt in the past and he was very helpful. HTH G On Tue, Nov 4, 2008 at 11:56 AM, Rob Parkhill [EMAIL PROTECTED]wrote: Good

Re: Script to move email to from undelivr to spool?

2008-11-04 Thread Chris Kelly
I simply use this: cfdirectory directory=undelivr action=list name=undelivr cfoutput query=undelivrcffile action=move destination=spool\#undelivr.name# source=undelivr\#undelivr.name# /cfoutput replace undelivr and spool with your actual undelivr and spool directories. Run as often as you

Update Panel... Coldfusion?

2008-11-04 Thread Kim Hoopingarner
I have been in the ASP.NET / AJAX world recently and found one feature there that is a real asset to a web site... UpdatePanel. Basically it allows the browser to do partial page post-backs and therefore helps with response time. In Coldfusion - does anyone know if there is something like

RE: CF DATEDIFF Function

2008-11-04 Thread Dawson, Michael
Exactly. An entire day must expire before it can be counted. To expand that, an entire time period must expire before it can be counted. This includes years, months, days, hours, minutes, seconds, etc. If you want to count today, just add one or use a different time period as Paul suggests.

Re: CF DATEDIFF Function

2008-11-04 Thread Jason Fisher
As others have pointed out, it's an issue of Whole Days. Think of it this way, you are testing number of days between Now() and tomorrow's date, right? Well, Now() includes the time, so not just '11/04/2008', but right now it's '11/04/2008 08:06 EST'. When you test that against '11/05/2008',

Re: Post Code Check

2008-11-04 Thread Jason Fisher
Glad that worked for you. It's easy to overuse sub-queries (there can be performance issues), but for something like this, where two bits of data are mostly unrelated, but the sample size is always small, they're great. ~|

cffile + cffunction

2008-11-04 Thread Won Lee
*Tried a search via HoF and it didn't return anything useful. I have a form page with an input type=file name=all On the action page, I would like to call a function that will upload the file. Unfortunately cffile assumes fileField is always a form field. So my function breaks with the

SQL: Outer Join question.

2008-11-04 Thread Ian Skinner
How to select all records from the left table and all the records on the right that match certain criteria. This does not work because the where clause filters out all the 'NULLS' from the records in the a table that do not have a matching record in the b tables. SELECT a.field,

RE: Script to move email to from undelivr to spool?

2008-11-04 Thread Nick Gleason
Paydirt! Thanks for all the feedback! -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 9:31 AM To: cf-talk Subject: RE: Script to move email to from undelivr to spool? My project, the Undelivrnator, can be used for this:

Re: cffile + cffunction

2008-11-04 Thread Won Lee
*Tried a search via HoF and it didn't return anything useful. I have a form page with an input type=file name=all On the action page, I would like to call a function that will upload the file. Unfortunately cffile assumes fileField is always a form field. So my function breaks with the

Re: cffile + cffunction

2008-11-04 Thread Jason Fisher
I have always sent into my function only the field name, since that's what CFFILE needs. You're right that the tag will look only to the Form scope, so work with it as is: uploadSuccess = upload(all); cffunction name=upload ... cfargument name=fileName type=string ... cffile action=upload

Re: SQL: Outer Join question.

2008-11-04 Thread Jason Fisher
Give this a try. It will still honor the LEFT OUTER JOIN while using both of your tests to select 'b' records. SELECT a.field, count(b.field) FROM aTable a LEFT OUTER JOIN bTable b ON a.key = b.fkey AND b.year BETWEEN 2000 AND 2003 AND b.type = 'C' GROUP BY

Re: cffile + cffunction

2008-11-04 Thread Gerald Guido
I have a generic CFC to handle file uploads if you are interested. It comes with a working example. http://www.myinternetisbroken.com/files/FileUpload.cfc.zip G On Tue, Nov 4, 2008 at 2:31 PM, Won Lee [EMAIL PROTECTED] wrote: *Tried a search via HoF and it didn't return anything useful.

Re: SQL: Outer Join question.

2008-11-04 Thread Ian Skinner
Jason Fisher wrote: Give this a try. It will still honor the LEFT OUTER JOIN while using both of your tests to select 'b' records. Thank you, that worked perfectly. Ian ~| Adobe® ColdFusion® 8 software 8 is the most

RE: Script to move email to from undelivr to spool?

2008-11-04 Thread Andy Matthews
If you decide to use this project, let me know. It'd be nice to hear if anyone likes it, and finds it useful. -Original Message- From: Nick Gleason [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 1:30 PM To: cf-talk Subject: RE: Script to move email to from undelivr to spool?

Open Source Document Management System

2008-11-04 Thread Kim Hoopingarner
Does anyone know where there might be a good document management (web based) system that might even have open source? Thoughts? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the

Coldfusion Image Gallery

2008-11-04 Thread Anthony Doherty
im not sure if this question has been asked before but i have searched the net for about 8 hours and cant seem to find anything that will work for my problem. Im trying to create an image gallery that the image automatically changes to the next image from the recordset. The image name e.g.

Re: cffile + cffunction

2008-11-04 Thread Won Lee
Thanks for the quick replies. I've fixed the problem and am going to share so other ppl don't have to waste an hour like I did. 1) The form field name and the argument name do NOT have to be the same. I named my input field all and my argument name MP3File. 2) When you pass the file name to

Re: Cf8 bug?

2008-11-04 Thread Dominic Watson
It's very difficult to say from what you've given us. Can you supply more code and explanation? A couple of things though; a cfc method that invokes a method on another cfc that invokes a method from the original cfc sounds like a design mistake - as does the use of the application scope inside

Re: Open Source Document Management System

2008-11-04 Thread Jordan Michaels
http://www.razuna.com/ It's a bit more then a simple document management system (It's creators refer to it as a Digital Asset Management System), but it's open-source and runs flawlessly on OpenBD. Hope this helps! Warm regards, Jordan Michaels Vivio Technologies http://www.viviotech.net/ Open

EOF error message in email.log

2008-11-04 Thread Nick Gleason
Hey there - another cfmail related question. A client is having problems sending out an email through our application using cfmail. We are seeing the following record in mail.log: Error,scheduler-8,11/04/08,15:10:23,,[EOF] I gather that EOF stands for end of file, but I'm not sure what that

Re: Open Source Document Management System

2008-11-04 Thread Shannon Peevey
I am always confused by dual-licensed Free software. I don't understand how you can distribute the same software with two different licenses, and still enforce the letter of the AGPLv3... (Which is used to give the recipient of the code the same rights to distribution as the original creator).

Re: Improvong code and application

2008-11-04 Thread Toby King
Just a quick question in relation to the CFQueryParam - where are you advising that I use this command. Thanks in advance for your reply. I have a piece of code in a program which I think would be much better if placed into a CFC. Just wondering what is the best approach to take.

Re: EOF error message in email.log

2008-11-04 Thread Rob Parkhill
I would guess that it is a bad e-mail causing the problem. Why are you BCC-ing a bunch of e-mails? Why not just send direct? Of course looking at the e-mails may lead you to the problem, or see what is in the undeliverable folder. Rob On Tue, Nov 4, 2008 at 7:56 PM, Nick Gleason [EMAIL

Re: Improvong code and application

2008-11-04 Thread Jason Fisher
The Muse had a whole series on SQL injection attacks back in July. There are other good reasons to use CFQUERYPARAM as well, but this one alone should scare the pants off anyone doing dynamic database work on the web.

RE: ColdFusion Trend Information?

2008-11-04 Thread Dave Phillips
This is more appropriate for cf-jobs-talk, so we should move it there. FYI - this is only for odesk.com trends, not ColdFusion in general. Dave -Original Message- From: Daryl James [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 3:47 PM To: cf-jobs Subject: ColdFusion Trend