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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 136281 - 136310 of 154475   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
136281
Just wondering what others are using for editing resource bundles. I like the Resource Bundle Editor plugin for eclipse very much ...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
12:04 pm
136282
... I'm a newbie, but started using this one since I'm still not a cfeclipse user. http://attesoro.org/ Will ...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
12:29 pm
136283
... 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. ...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
1:23 pm
136284
Josh, Thank you very much. That got me going on the path to what I need to accomplish. Once again, thanks, Michael ... ...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
1:25 pm
136285
I switched from Smart FTP to FileZilla as my primary FTP program a few years back. -Mike Chabot ... ...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
1:28 pm
136286
I've got two questions. First: Is there a way to make sure a file is only cfincluded once? I'm using cfinclude to include a UDF library in the...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
2:46 pm
136287
trim() to trim variables. ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
2:51 pm
136288
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...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
2:51 pm
136289
... 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...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
2:54 pm
136290
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...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
3:44 pm
136291
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'...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
3:44 pm
136292
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,...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
4:18 pm
136293
Sorry - thats what i meant, encoding. How do i check the encoding of the file? -jeff ... ...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
4:31 pm
136294
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...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
5:06 pm
136295
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...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
5:19 pm
136296
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...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
5:46 pm
136297
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...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
5:55 pm
136298
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? ...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
5:59 pm
136299
If you're wanting coldfusion to check, you could do something like: <cfset mydate = now() /> <cfset sDate = CreateDate(year(now()),7,1) /> <cfset eDate =...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
6:09 pm
136300
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 ...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
7:02 pm
136301
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 ...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
8:12 pm
136302
... 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...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
8:42 pm
136303
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/ ...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
8:52 pm
136304
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...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
9:04 pm
136305
... 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...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
11:35 pm
136306
... 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...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
11:48 pm
136307
... it sounds like "re-inventing the wheel" to me ;-) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
11:50 pm
136308
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...
archive@...
mdinowit
Offline Send Email
Aug 1, 2008
11:54 pm
136309
... 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...
archive@...
mdinowit
Offline Send Email
Aug 2, 2008
1:00 am
136310
I'm looking for some good advice/info on exchanging variables between CF and javascript, anyone know of a good reference site, please? Jenny ...
archive@...
mdinowit
Offline Send Email
Aug 2, 2008
6:12 am
Messages 136281 - 136310 of 154475   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