Why don't you just let SQL Server insert the time automatically on insert? "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond,...
New Years day being a good day to clean house, I was culling some old stacks of CDs, and came across a copy of Website Professional version 1.1 (date of May...
... I prefer to control everything that is a part of the application at the application level. Keep all the code that does things in the same place. Plus I...
I can't understand why this produces the javascript error "String.insertAt is not a function" (firefox), tried IE and opera to. <script type="text/javascript">...
I put a test page here: http://www.macrodate.com/test/test1.cfm Andrew. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Create robust...
Perhaps because those examples are for WMLScript, not JavaScript? cheers, barneyb ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| ...
... According to this link, this is an example for WMLScript, a variation of javascript for use with wireless devices. I don't see a insertAt method in...
... I don't know how much it is, but I'd expect it to be more than $1K. You can't get anything for $200. ... Actually, there are good reasons to use ISO images...
... Not something I've done before, so this isn't tested well or anything... <script> function insertAt(s,i,l){ return (s.substr(0,l))+i+(s.substr(l)); } var a...
Very true...a RAID array would be a good way to go, but I'd have to setup another computer for that. (Or are there external drives that work in RAID arrays...
... Yes, there are, but they'll cost a little more than $200. Infrant has some very nice SOHO NAS (network attached storage) devices: http://www.infrant.com/ ...
I finally manage to use firebug properly. It gives me an error on engine.js line 531. The server it self gives me "invalid reply from server" the loading icon...
This proves that you need to return a value from myFuncIngrWorld(). You can't just rely on the output being generated - catch the content using CFSAVECONTENT...
It depends on the scope of your application. If the variables are referenced by more than one database, you can claim server scope. if the variables are...
Thanks for the info, Dave... Have a good day! Rick ... From: Dave Watts [mailto:dwatts@...] Sent: Monday, January 01, 2007 8:46 PM To: CF-Talk Subject:...
I have an interesting dilemma. I need to populate a Select dropdown field with the past five days. It worked OK until today and it's my coding fault. Right now...
... Dan, good entry. Thanks for sharing. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Create robust enterprise, web RIAs. Upgrade &...
These are no good since the loadClass method of java.lang.ClassLoader always calls the parent classloader first, which finds the version of OSCache from CF's...
Look at using actual date values. Start with something like DateAdd("d",-5,now()) to set you back 5 days, then loop 5 times, each time adding one day to your...
The scope is really a "system" scope. It's more like something you might see in a department's standards document... "The status of a db call must always be...
I think James is right, but have you tried changing the return type on your cfc to 'void'? Even though I don't that will make a difference. The only times I...