Ben Forta

Tag: ColdFusion

← All posts
August 28, 2006

Simple ColdFusion Date Difference Calculations

DateDiff() is usually used to perform date difference calculations. But for simple difference calculations you can subtract dates from each other, like this: #Now()-mydate# days since #DateFormat(mydate)# The returned number will likely not be an integer, and will contain date fractions too, so you...

August 27, 2006

Mike Nimer's Flex Debug Component

I was working on a Flex component to display ColdFusion debug data in a usable format, but then learned that Mike Nimer had beaten me to it (and created something far more elaborate than I was planning). So, if you are looking for something akin to in Flex (usable with any AS3 objects, including...

August 21, 2006

Accessing Java Properties

An app I am working on needs to check the Java CLASSPATH (I am trying to return more useful errors if a call fails). The CLASSPATH is a Java property (kind of like environment variables) named java.class.path, and to obtain this value all you need to do is call getProperty() in java.lang.System. To...

Page 90 of 156 (1560 posts)