Re: WWOT: OS X for Intel?

2004-09-21 Thread Mike Kelp
I fully agree with you (Jim). Your comments on linux and Firefox are very accurate as well. Anyway, as I see that this has gone way off the original topic of this thread, I would at least like to ask if any of you have any good books or resources involving User Interface Development/Design that

Re: WWOT: OS X for Intel?

2004-09-20 Thread Mike Kelp
and thanks to anybody willing to read the whole thing hehe. -- Mike Kelp --Education's purpose is to replace an empty mind with an open one. ~Malcolm S. Forbes --If knowledge is power, know this is tyranny. ~Thrice [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: WWOT: OS X for Intel?

2004-09-20 Thread Mike Kelp
better). Thanks again -- Mike Kelp --Education's purpose is to replace an empty mind with an open one. ~Malcolm S. Forbes --If knowledge is power, know this is tyranny. ~Thrice [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Webservice: argument type mismatch

2004-08-27 Thread Mike Kelp
I'm using the interfax web service quite successfully. If you can give me a little more detail as to what's going on, i'd be glad to help. I've also been writing a CFC to take care of all the actions for me (attatching files and HTML and sending the fax via the webservice). Maybe I can pass you

Re: RegEx - is it possible to strip all HTML except certain tags?

2004-08-25 Thread Mike Kelp
I wrote a cfc to do things like this a while back...I'll see if I can send it to you shortly. I wrote it for adding smiley face code and securing HTML in a forum so it takes a list of accepted tags and removes the rest. I know this doesn't help you a lot now, but if I can find a good snippet of

Re: RegEx - is it possible to strip all HTML except certain tags?

2004-08-25 Thread Mike Kelp
Here you go...So you know, in regex: x?!y matches x only if it is not followed by y x?=y matches x only if it is followed by y These are referred to as lookahead expressions The attached file has that function I had mentioned. Hope this helps you, Mike On Wed, 25 Aug 2004 12:08:37 -0500, Mike

Re: RegEx - is it possible to strip all HTML except certain tags?

2004-08-25 Thread Mike Kelp
.:-( --Ben Mike Kelp wrote: Here you go...So you know, in regex: x?!y matches x only if it is not followed by y x?=y matches x only if it is followed by y These are referred to as lookahead expressions The attached file has that function I had mentioned. Hope this helps you

Re: Gmail

2004-08-21 Thread Mike Kelp
If you don't mind, I could use an invite to [EMAIL PROTECTED] - Original Message - From: Josh [EMAIL PROTECTED] Date: Sat, 21 Aug 2004 13:16:03 -0400 Subject: Re: Gmail To: CF-Talk [EMAIL PROTECTED] yes, please!I'd like to chack it out if you have any left. -Josh Matt Robertson wrote:

Re: blackstone, what would be sweet

2004-08-17 Thread Mike Kelp
I really hope blackstone holds up to the hopes it has created. I wish I could get my hands on the beta when it is out and give it a beating. If the plans macromedia has been telling us come true, CF will be much more attractive to everyone and doing things like you mentioned will become easier if

Re: blackstone, what would be sweet

2004-08-17 Thread Mike Kelp
-- From: Mike Kelp [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Tue, 17 Aug 2004 04:08:14 -0500 I really hope blackstone holds up to the hopes it has created. I wish I could get my hands on the beta when it is out and give it a beating. If the plans macromedia has been telling

Re: foreach?

2004-08-11 Thread Mike Kelp
I assume you are looking for the CF equivalent of PHP to loop through a structure. CF uses the collection and item attributes of the CFLOOP tag. http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-p81.htm#wp2393950 Its actually really powerful. Take care _ From: Damien McKenna

Re: server-side forwarding in CFMS

2004-08-09 Thread Mike Kelp
that I did not try was placing a cfexit after this call. I do know that the method works though despite its lack of documentation. The question is simply controlling it. Hope this helps some...It is definitely worth some experimentation. -- Mike Kelp --Education's purpose is to replace an empty

Re: Allow End User to Save As Excel/CSV

2004-07-30 Thread Mike Kelp
At the top just before your before you output the data...This will clear any content before the cfcontent tag and tell the browser the content you are outputting onto the page is an attachment. cfheader name=Content-Disposition value=attachment; filename=Name_Of_File.csv cfcontent reset=yes

Re: CFHTTP

2004-07-28 Thread Mike Kelp
1) You are getting the column error because you are passing the name attribute, which specifies a variable name for creating a query based on the data returned (hence cf is looking for a list of column names in the first line of the response) 2) Check out the livedocs!

Re: CF Tag help needed

2004-07-28 Thread Mike Kelp
take a look at the cfsavecontent tag: http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-a29.htm#wp1844410 Have a good day. - Original Message - From: Dale Hans [EMAIL PROTECTED] Date: Wed, 28 Jul 2004 17:42:23 -0400 Subject: CF Tag help needed To: CF-Talk [EMAIL PROTECTED]

CFMX Role-based security and thoughts relating to Mach-II

2004-07-27 Thread Mike Kelp
would be changes in future versions of coldfusion, etc. but if the system does not offer many/any benefits I will stop considering it totally. Thanks for your thoughts, Mike Kelp -- Education's purpose is to replace an empty mind with an open one. ~Malcolm S. Forbes If knowledge is power, know

Re: CFQUERYPARAM

2004-07-27 Thread Mike Kelp
cfqueryparam cfsqltype=cf_sql_integer value=#Package_List# list=yes separator=, / Take Care, Mike Kelp - Original Message - From: Ciliotta, Mario [EMAIL PROTECTED] Date: Tue, 27 Jul 2004 17:29:40 +0100 Subject: CFQUERYPARAM To: CF-Talk [EMAIL PROTECTED] Hi, I have a query that I am

Re: Using missing templates as a mod_rewrite

2004-07-27 Thread Mike Kelp
A while back, I wrote a small custom tag for this on our sites using CFMX. Here is the code: cfparam name=Attributes.Webserver default=IIS !--- Maintain Url Variables --- cfif Attributes.Webserver IS Apache cfset urlArray = ListToArray(CGI.Path_Info,'/') cfelse cfset urlArray =

Re: Using missing templates as a mod_rewrite

2004-07-27 Thread Mike Kelp
Forgot to mention, I can attest pretty well to the reliability of this code as it has been spidered by google on both our apache and IIS test servers quite a bit in the past 8 months. Good Luck. -- Mike Kelp --Education's purpose is to replace an empty mind with an open one. ~Malcolm S. Forbes

Re: grabbing the id of an item just entered into DB

2004-07-26 Thread Mike Kelp
If you are using SQL Server, the functions you need are SCOPE_IDENTITY() and IDENT_CURRENT(). These will grab the last id inserted into a table, etc. but be sure to make yourself aware of their scopes. I would highly recommend checking out the t-sql reference here:

Re: grabbing the id of an item just entered into DB

2004-07-26 Thread Mike Kelp
Figured I would bring this up as I have noticed issues with it in the past. This is a quote from the microsoft site about the various current identity functions of sql server. IDENT_CURRENT is similar to the Microsoft® SQL Server„¢ 2000 identity functions SCOPE_IDENTITY and @@IDENTITY. All three