Monthly Archives: May 2010

JQuery Confirm

The standard JavaScript confirm prompt allows you to ask a question and the user can respond with ok or cancel. But suppose you want them to have the choice of sign-up and non-now? This allows you to guide the user … Continue reading

Posted in Code, JQuery | Comments Off on JQuery Confirm

Create dropdown selection for last 12 months.

Simple Coldfusion method for creating a select dropdown form element of the last 12 months sorted descending. The report-date is formatted for oracle queries. Change the dateFormat mask to fit your needs. <cfselect name=”report_date”> <cfloop from=”1″ to=”12″ index=”x” step=”1″> <cfset … Continue reading

Posted in Code | Comments Off on Create dropdown selection for last 12 months.

Temp tables and bad habits

We often have need to hold the results of a query in a temporary table so we can join or perform other tasks in later queries. <cfquery name=”Q1″ datasource=”myDsn”> select * into ##temp1 from mytable </cfquery> It is nice that … Continue reading

Posted in Code, Coldfusion, SQL | Comments Off on Temp tables and bad habits

Coldfusion Wheels Framework

Every developer eventually begins to see the pitfalls of large applications and trying to manage all the files and processes that make up that application. At work, I am dealing with a large existing CFML application with hundreds of cfm … Continue reading

Posted in Applications, Coldfusion, Products | 2 Comments

Notepad++

I just downloaded Notepad++. This is a great little text editor for when you don’t need a full blown application like dreamweaver. It opens quickly and lets you view your code for various programming and scripting languages. You can even … Continue reading

Posted in Products | Comments Off on Notepad++