Ask Ben: Appending Times To Date/Time Objects

<cftimer label="Two" type="outline">
	<cfloop index="intI" from="1" to="1000">
		 
		<cfset dtTwo = (
			Round( dtNow ) +
			CreateTimeSpan( 
				0, <!--- Days. --->
				18, <!--- Hours. --->
				0, <!--- Minutes. --->
				0 <!--- Seconds. --->
				)
				) />
		 
		<cfset WriteOutput( 
			CreateODBCDateTime( dtTwo )
			) />
			 
	</cfloop>
</cftimer>

For Cut-and-Paste