Re: Internationalization of Week() function in CF - Last resort to Java [spamtrap heur]

2010-12-24 Thread Nando
Paul, *Fully* agreed that the ideal is to let the Locale set MinimalDaysInFirstWeek and FirstDayOfWeek as you've indicated. I'm just looking for a clean way of doing that. The only hitch involved in providing a relatively simple LocaleWeek() UDF back to the CF community at this point seems to be

Class not found in the specified assembly list.

2010-12-24 Thread Nicholas Stein
I run the following code and get an error. !---THIS WORKS--- cffunction name=Ping returntype=string output=false cfargument name=host type=string required=yes !--- Local variables --- cfset var pingClass= cfset var pingReply= !--- Get Ping class --- cfobject

Getting IIS 404 errors handled by CFM?

2010-12-24 Thread Marie Taylore
Is there a way to get the IIS 404 pages handled by the CF engine? This is CF8 on Win2003 Server. Currently, it displays the page, but when you View Source, you see all the CFML code. Switched back to a plain HTM file for now. Thanks! MarieT

Re: Getting IIS 404 errors handled by CFM?

2010-12-24 Thread Brian Polackoff
Set IIS custom 404 error to URL and set to /404.cfm. Then create a a file called 404.cfm an place it in your web root. This will do what you want. Thanks, Brian On Dec 24, 2010, at 6:04 PM, Marie Taylore mt4yl...@yahoo.com wrote: Is there a way to get the IIS 404 pages handled by the CF

Diplaying struct info when you dump an array with strcts in it's elements...

2010-12-24 Thread Eric Roberts
Is there a way to get cfdump to display the struct name when it dumps? I have an array that contains a struct and I am having some issues adding some vars for display so I want to make sure I am addressing it correctly. Currently, all cfdump shows is the word struct. It looks like everything is

Re: Diplaying struct info when you dump an array with strcts in it's elements...

2010-12-24 Thread Charlie Griefer
You can add the label attribute? cfdump var=#myStruct1# label=myStruct1 / cfdump var=#myOtherStruct# label=a different struct / On Fri, Dec 24, 2010 at 6:21 PM, Eric Roberts ow...@threeravensconsulting.com wrote: Is there a way to get cfdump to display the struct name when it dumps?  I have

RE: Diplaying struct info when you dump an array with strcts in it's elements...

2010-12-24 Thread Eric Roberts
Any way to ge that dynamically label structures instead of just putting array or struct? -Original Message- From: Charlie Griefer [mailto:charlie.grie...@gmail.com] Sent: Friday, December 24, 2010 19:51 To: cf-talk Subject: Re: Diplaying struct info when you dump an array with strcts

Re: Diplaying struct info when you dump an array with strcts in it's elements...

2010-12-24 Thread Charlie Griefer
The value for label can be any value you want... literal string or variable. On Fri, Dec 24, 2010 at 7:33 PM, Eric Roberts ow...@threeravensconsulting.com wrote: Any way to ge that dynamically label structures instead of just putting array or struct? -Original Message- From: