Re: Pskill and cfexecute

2008-01-27 Thread Jason Congerton
I am trying to kill the process htmldoc.exe, using pskill.exe, however i keep getting the following error It might be waiting for acceptance of the EULA. If you are using a newer version, try adding the flag -accepteula it did appear, and i replied, which doesn't look like it loaded

Re: date problem

2008-01-27 Thread Richard White
:) thanks again this is very straight forward and at the moment is solving our problems. sometimes we dont know what format the user is going to pass the date in so we first check with input mask US and if it says invalid date then we pass in input mask EU and if it works then fine and if not

Re: date problem

2008-01-27 Thread Claude Schneegans
so we first check with input mask US and if it says invalid date then we pass in input mask EU and if it works Good point. But this is not really 100% proof, since some dates may be valid in US format, although they were meant in EU format. Take 10/11/2008 for instance. So the date may be

Re: Has anyone here built a solid RSS Ingest system?

2008-01-27 Thread Nate Willard
Thanks Don --- Don L [EMAIL PROTECTED] wrote: A system that would ingest stories from 1+ rss feeds? I think so. And in my view, there are at least two techniques to handle exception gracefully using CFTHREAD tag. a) the timeout attribute, this is an easier way to implement; b) using

Is there a safe way to offer a Send to a Friend(email) feature without the concern of a Spam Bot?

2008-01-27 Thread Nate Willard
Has anyone solved this and made such a tag/module available? My site's users are demanding such a feature. I've never use the Send to Friend but to my surprise a lot of people do. I'm concerned that adding this feature will welcome spam bots as most send to friend features offer a Message Input

RE: Is there a safe way to offer a Send to a Friend(email) feature without the concern of a Spam Bot?

2008-01-27 Thread William Seiter
Some of this will depend on whether or not you have a logged in area. I have added these systems in the past, but only with certain backend protections. For instance, You can limit it to 1 email address per send Offer an 'opt out' link for the recipients to add their email address to. Add a

Re: zip code range from xls to sql

2008-01-27 Thread morchella
bump.. any ideas how to do this? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive:

Re: Is there a safe way to offer a Send to a Friend(email) feature without the concern of a Spam Bot?

2008-01-27 Thread J.J. Merrick
I would think a captcha on the form would help stop most bots. Just a thought. J.J. On 1/27/08, Nate Willard [EMAIL PROTECTED] wrote: Has anyone solved this and made such a tag/module available? My site's users are demanding such a feature. I've never use the Send to Friend but to my

Re: # issue SQL Query

2008-01-27 Thread s. isaac dealey
I have a sql query (SQL Server 2000) for CFMX: SELECT @Col_with_No_Pound = @Col_with_No_Pound + CASE @Col_with_No_Pound WHEN '' THEN '' ELSE ',' END + COLUMN_NAME, @Col_with_Pound= @Col_with_Pound + CASE @Col_with_Pound WHEN '' THEN '#' ELSE '#,#' END + COLUMN_NAME .

Re: Has anyone here built a solid RSS Ingest system?

2008-01-27 Thread Raymond Camden
Paragator. It lets you both do basic reading, as well as searching. It also takes fields that are a bit different in Atom versus RSS and 'mashes' them up into a common set of fields. http://paragator.riaforge.org On Jan 25, 2008 7:04 PM, Nate Willard [EMAIL PROTECTED] wrote: A system that

Re: Is there a safe way to offer a Send to a Friend(email) feature without the concern of a Spam Bot?

2008-01-27 Thread s. isaac dealey
Couple of good suggestions from JJ and Will... I will briefly make the note that the captcha produces a number of other potential issues related to say visually impaired users, which is why for example PayPal now has an audio captcha (or at least they used to), although I think you'd be hard

Re: Is there a safe way to offer a quot;Send to a Friend(email)quot; feature without the concern of a Spam Bot?

2008-01-27 Thread Will Tomlinson
Has anyone solved this and made such a tag/module available? I use cfformprotect with success. Will ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: zip code range from xls to sql

2008-01-27 Thread C. Hatton Humphrey
bump.. any ideas how to do this? Hrm... it sounds to me like the logic is such that you're going to be better off making use of an array or structure to parse out the values. SQL doesn't have access to complex variable types. I would suggest creating an array of structures... each structure

Re: zip code range from xls to sql

2008-01-27 Thread Paul Ihrig
so do a query to get my list of zip codes. then try to do a listtoarray or should i first do a cfloop query to try to step through the values.. man.. feeling so stoopid.. i swear i saw an example of this in a wack4-7 book some where.. but cant find it..