Category Archives: ColdFusion

Problem with ColdFusion ListQualify function?

Here’s a ColdFusion/Oracle problem that took way longer than I thought it would. I wanted to exclude a couple names from a result set an pass the names in a single-quote, comma-delimited list: <cfset tempexcludelist =”PHIL,DON”> <cfset VARIABLES.excludelist = “(“&ListQualify(tempexcludelist,”‘”)&”)”> … Continue reading

Posted in ColdFusion, Oracle | Tagged , | Comments Off

Cool Find and Replace using regexp

So I saved an Excel file as a tab-separated text file. Then I wanted to add some html. The first column was all numbers followed by a tab and the second column. I opened the text file in Dreamweaver and … Continue reading

Posted in ColdFusion, Internet, Regular Expressions | Comments Off

Shun the Coldfusion Developer’s Journal

Every fricking time I go to the Coldfusion Developer’s Journal (coldfusion.sys-con.com), Firefox crashes. I hate that.

Posted in ColdFusion | Comments Off

ColdFusion/Outlook email discovery

Generating an Outlook meeting invitation from ColdFusion is a challenge. There are snippets of code here and there, but I finally got a working solution. <cfmail to=”someone@someplace.com (Name here)” from=”someoneelse@someplace.com (Name)” subject=”Test appointment from ColdFusion” type=”multipart”> <cfmailparam name=”content-class” value=”urn:content-classes:calendarmessage”> <cfmailparam … Continue reading

Posted in ColdFusion | Comments Off

Another day in the life of a ColdFusion drone

This may be of use to the handful of people in the universe who: 1. use ColdFusion; 2. have no direct access to their Coldfusion server; 3. need to manipulate PowerPoint on the server; and 4. aren’t using .NET OK, … Continue reading

Posted in ColdFusion, Web Design | Tagged , | Comments Off