Search the web
Sign In
New User? Sign Up
CFTalk · ColdFusion Talk (CFTalk) List archives
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 92988 - 93017 of 154386   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
92988
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,...
archive@...
mdinowit
Offline Send Email
Jan 1, 2007
8:28 am
92989
Try using the new beta of FireBug. It's very cool. If you're using IE, check out Fiddler or some other HTTP Sniffer. Cheers, Chris ... ...
archive@...
mdinowit
Offline Send Email
Jan 1, 2007
8:17 pm
92990
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...
archive@...
mdinowit
Offline Send Email
Jan 1, 2007
8:21 pm
92991
hi webdevotion this looks really good. is there a way to put the dates on the duration part of the chart thanks ...
archive@...
mdinowit
Offline Send Email
Jan 1, 2007
8:21 pm
92992
... 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...
archive@...
mdinowit
Offline Send Email
Jan 1, 2007
10:13 pm
92993
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">...
archive@...
mdinowit
Offline Send Email
Jan 1, 2007
10:20 pm
92994
I put a test page here: http://www.macrodate.com/test/test1.cfm Andrew. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Create robust...
archive@...
mdinowit
Offline Send Email
Jan 1, 2007
10:55 pm
92995
Perhaps because those examples are for WMLScript, not JavaScript? cheers, barneyb ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| ...
archive@...
mdinowit
Offline Send Email
Jan 1, 2007
11:04 pm
92996
... 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...
archive@...
mdinowit
Offline Send Email
Jan 1, 2007
11:13 pm
92997
Jim, Thanks for pointing that out(WMLScript), is there a way to insert a string within another using javascript? Andrew ... ...
archive@...
mdinowit
Offline Send Email
Jan 1, 2007
11:23 pm
92998
... 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...
archive@...
mdinowit
Offline Send Email
Jan 1, 2007
11:51 pm
92999
... 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...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
12:20 am
93000
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...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
12:40 am
93001
... 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/ ...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
1:57 am
93002
Thanks Jim, that works perfectly! the revised test can be seen here: http://www.macrodate.com/test/test1.cfm Andrew. ...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
2:27 am
93003
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...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
10:44 am
93004
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...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
12:03 pm
93005
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...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
2:01 pm
93006
Benjamin, Since the list doesn't allow attachments, is your cfqueryparam tag available via a URL? -Dan ... ...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
2:50 pm
93007
Sometimes explicitly specifying the join hints can help if MSSQL is having problems determining the best execution plan at runtime: ...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
2:57 pm
93008
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:...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
3:16 pm
93009
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...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
3:19 pm
93010
... How about... <cfloop index="i" from="1" to="5"> #dateformat(now()-i,"dd")#<br> </cfloop> ...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
3:21 pm
93011
... Dan, good entry. Thanks for sharing. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Create robust enterprise, web RIAs. Upgrade &...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
3:30 pm
93012
<cfoutput> <cfloop index=x from=5 to=1 step=-1> #DateFormat(DateAdd('d',-x,Now()),"MM/DD/YYYY")#<br> </cfloop> </cfoutput> ... From: Orlini, Robert...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
3:34 pm
93013
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...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
3:38 pm
93014
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...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
3:40 pm
93015
<select name="days2"> <cfloop from="#dateAdd('d',-5,now())#" to="#now()#" index="i" > <option><cfoutput>#dateformat(i,"mm/dd/yyyy")#</cfoutput></option> ...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
3:49 pm
93016
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...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
3:57 pm
93017
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...
archive@...
mdinowit
Offline Send Email
Jan 2, 2007
4:13 pm
Messages 92988 - 93017 of 154386   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help