... be careful. it can save rb as utf-8 which while ok for flex isn't too good for java based rb which are expecting escaped unicode. i hate the darned thing. ...
trim() to trim variables. ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important...
Pete: 1. You could check for the existence of a variable (or function) in the cfinclude, like this: <cfif NOT isDefined("var_name_from_include")> <cfinclude...
... You can set a special variable in the included file and check for it before including it anywhere to ensure it only gets loaded once no matter how many...
back in the days of C/C++ we used to do this with header files all the time. inside the included file do: <cfif isdefined("include_myfile") is 0> <cfset...
I try to use functions and CFCs for code that may need to be included more than once, but I can think of a quick fix if you need to mimic an 'include_once'...
We have a client who wants our CF based application to display chinese characters. We've done a bit of research but haven't been able to pull it off yet. So,...
you'd be outputting unicode. hopefully your client will have either big5 or gb font package installed already. have fun coding error messages and whatnot in...
We have been able to isolate the issue to a specific server, then rebuild the sandbox to correct the issue. The problem is we dont know what is causing the...
Hey all. I've got a fiscal year that runs from July of a year to June of the next (July 2008 to July 2009). In the body of the application that I'm runnng I...
Now that I look closer at the issue, it seems to be a casing issue in the path trying to be accessed. Now to find out how the case is changing on a template...
if your database supports BETWEEN, you can select foo from my_tbl where my_date between start_date and end_date or are you wanting to do that in ColdFusion? ...
If you're wanting coldfusion to check, you could do something like: <cfset mydate = now() /> <cfset sDate = CreateDate(year(now()),7,1) /> <cfset eDate =...
It does (MSSQLServer 2000) I think I've got it handled this way: <!--- determines if today is within the current fiscal year Author: Scott Stewart, Procomm ...
Great I'll check into those. I am working with Java resource bundles by the way. From what I've seen with the Eclipse plugin, you can type/paste/view the ...
... For What's Its Worth. We have application requiring different languages dependent upon users login. In my situation I built an admin interface listing all...
I did something similar for CFFAQ. It supports all sorts of languages, including Chinese and Urdu (a right-to-left language). Default: http://www.cffaq.com/ ...
I have an Adobe Air application that will post a file to a cfc. The cfc accepts the file fine. <cfargument name="foo" type="binary" required="yes"> and I can...
... i guess the first thing you should do is find out what 'chinese' *they* mean by 'chinese'. - for encoding: "just use unicode" - for the strings: use...
... the last version i looked at had the option (maybe was default) to save as utf-8 encoded files. if i recall correctly, somebody blew up a set of rb i had...
... it sounds like "re-inventing the wheel" to me ;-) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8...
oops, i forgot that jason sheedy's also got an rb management tool: http://www.jmpj.net/jason/page.cfm/RbMan2 it's flex based so it won't right now handle RTL...
... Nope, this is my first true i18n venture and I was actually planning to look you up again soon :-) But I do know what you mean about dreary. I am actually...