If your only checking to see if it is a multiple of 10, then something like:
<cfset tempInt = right(temp,2)> <cfif tempInt mod 10 eq 0> On Tue, Nov 18, 2008 at 10:29 AM, Brian Dumbledore <[EMAIL PROTECTED]>wrote: > I couldn't think of a workaround for this.. For whatever reason, I am > trying to do a > <cfset temp = gettickcount()> > <cfif temp mod 10 eq 0> > > ..... > > </cfif> > > and cf complains that temp value to a integer because it cannot fit inside > a integer. Is there any other simple way to handle this? How do I specify a > Long or something such? > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315427 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

