Re: Cf forum

2005-11-17 Thread mac jordan
On 16/11/05, Raymond Camden [EMAIL PROTECTED] wrote: Avatars (seems a bit silly) BBML (or whatever it is called, which is just a smiley language, right) yeah, but users *love* 'em. p.s. why don't people SNIP THEIR MESSAGES?! -- mac jordan home: www.kestrel.org http://www.kestrel.org work:

Re: Numbers to Words

2005-11-17 Thread Paul Hastings
cfset finalString = formatter.format(javacast(long, inNumber),%default) more for the i18n folks (everyone else avert your eyes ;-): after poking around a bit i can see that the format() method works w/out a wrapper if you pass in the ruleset name. cool, i've been out-researched ;-) but many

Re: listgetat problems....

2005-11-17 Thread Protoculture
Excellent, thanks guys! I think that the delimiter attribute of ListGetAt looks at each character specified on its own. In other words, it's looking for three possible delimiters: %, 2, and 0. Maybe if you used the URLDecode function first, then used a space as delimiter? Otherwise, I'd

PDF Question

2005-11-17 Thread david
We are creating PDFs using CF. One issue we are having is that we need to import an existing PDF file to stitch on to the end of the ones we have created before delivering it to the user. Is this possible within CF - or do we need to use third party tools? Thanks David [EMAIL PROTECTED]

RE: PDF Question

2005-11-17 Thread Robertson-Ravo, Neil (RX)
Very possible, we do just that using CF (MX) and iText. -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 17 November 2005 08:37 To: CF-Talk Subject: PDF Question We are creating PDFs using CF. One issue we are having is that we need to

CF 7 on website

2005-11-17 Thread Michael Dinowitz
Anyone here using the Deerfield website software with CF 7? ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with

Re: Sending Faxes through Cold Fusion

2005-11-17 Thread Protoculture
Hey all - I have a situation where I need to replace a current application (a web system that runs .exe for each requested page!) with CF. Everything is good except for one item: I need the ability to send a fax from CF. Does it have to be a fax? What about sending the data to a locally installed

Re: FCKEditor and uploading images

2005-11-17 Thread Protoculture
It does work once properly configured. If you can't getting working you missed something... Check your paths and everything where the files is getting uploaded to. /filemanager/upload/cfm/upload.cfm cffile action=UPLOAD filefield=FCKeditor_File

Re: nested array and structure loop inside cfmail....

2005-11-17 Thread Protoculture
Any ideas out there? basically having problems looping over a query object contained in a structure that is contained in an array. Could you post a dump of a sample structure? Sure, here is a picture of the structure ( personal info removed )

RE: nested array and structure loop inside cfmail....

2005-11-17 Thread Dawson, Michael
Try copying the query to a temp variable within your loop. cfset tmpQry = arr_alljobs[thisIndex].qry_candidates Then, use tmpQry to loop over the query itself. M!ke -Original Message- From: Protoculture [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 4:51 AM To: CF-Talk

RE: Sending Faxes through Cold Fusion

2005-11-17 Thread Justin D. Scott
Does it have to be a fax? What about sending the data to a locally installed printer? I'd love to know if there is a simple way to do that. I'm in a situation where I need to run several reports (generated in HTML) and they need to be printed on whatever the default printer is on the server

Java servlet error after defrag

2005-11-17 Thread Ben Nadel
I did a defrag on my C: drive two nights ago, and then last night, when I went to do some work, the CF Server didn't work. I was getting a java servlet error (if I remember correctly) that said NoClassDefFound error and then something like ColdFusion/lib/IPUtility something or other. I tinkered

application-specific debugging info?

2005-11-17 Thread Peterson, Andrew S.
Hello, Is there a way to place debugging information for a specific application (folder) without having sitewide debugging info turned on in the Administrator? Thank you. Sincerely, Andrew ~| Logware (www.logware.us): a

RE: Sending Faxes through Cold Fusion

2005-11-17 Thread Katz, Dov B \(IT\)
If you can convert the HTML to PDF (see iText or fop) you can install acrobat reader on the server and print the pdf by running: cmd.exe start /C acrord32 /p /h FILE.pdf -Original Message- From: Justin D. Scott [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 8:07 AM To:

SOT: eclipse tag attribute insight

2005-11-17 Thread Ryan Guill
Hey guys, I was using cfeclipse for a long time, upgraded to 3.2 and the newest nightly build a while ago and then when I bought the new studio 8 I went back to dreamweaver for a while so I could learn what the new features were. But now im going back to cfeclipse and for some reason when I type

RE: cfform popup

2005-11-17 Thread Bobby Hartsfield
It appears to (somewhat) work from what I see. It opens the new window sized and everything, it just takes the parent window to the getUrl() string. I'm digging trying to figure out how to stop the parent window from redirecting. I'll let you know if I find anything. ps, yeah, I think it is

Re: Sending Faxes through Cold Fusion

2005-11-17 Thread Protoculture
I wrote a small app in Visual Basic a few years ago that did exactly that. I might still have that kicking around somewhere. I'd love to know if there is a simple way to do that. I'm in a situation where I need to run several reports (generated in HTML) and they need to be printed on whatever

RE: Sending Faxes through Cold Fusion

2005-11-17 Thread Terry Troxel
Google HTMLDOC. If I remember correctly it's free and does everything you are looking for. Terry -Original Message- From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 7:27 AM To: CF-Talk Subject: RE: Sending Faxes through Cold Fusion If you can convert

RE: cfform popup

2005-11-17 Thread Bobby Hartsfield
Ok, sorry. I should have know this one but... onchange=getUrl(javascript:NewWindow=window.open('profile.cfm','Title','w idth=400,height=400,left=0,top=0,toolbar=No,location=No,scrollbars=No,status =No,resizable=No,fullscreen=No');, _blank) The , _blank will open it the javascript: string in a

RE: eclipse tag attribute insight

2005-11-17 Thread Munson, Jacob
cfqueryparam does give me tag insight, and most other things work for me as well. You might join the cfeclipse mailing list and ask this question there (http://cfeclipse.tigris.org/). The CFE developers are there and are usually very helpful. In fact, I have seen other people ask this same

RE: Sending Faxes through Cold Fusion

2005-11-17 Thread Justin D. Scott
I wrote a small app in Visual Basic a few years ago that did exactly that. I might still have that kicking around somewhere. If you still have a copy of that and wouldn't mind sending one over, my fellow coders and I would be very appreciative. -Justin Scott

Re: CF Reporting / Report Builder Questions

2005-11-17 Thread jonese
Well from what i've found out you can't do multiple queries inside a single report. unless you make a massive query with joins etc. How ever you can do sub-reports which is basically a report imbedded inside of another report. The Report builder can go N number of reports deep BUT ColdFusion will

RE: Sending Faxes through Cold Fusion

2005-11-17 Thread Justin D. Scott
If you can convert the HTML to PDF (see iText or fop) you can install acrobat reader on the server and print the pdf by running: cmd.exe start /C acrord32 /p /h FILE.pdf We're running CFMX 7, so wrapping our HTML reports with CFDOCUMENT might make this a viable solution assuming we can get

RE: Sending Faxes through Cold Fusion

2005-11-17 Thread Justin D. Scott
Google HTMLDOC. If I remember correctly it's free and does everything you are looking for. Thanks Terry, the only thing I could find with that was a utility to convert pages to PDF, but I didn't see anything about it sending them to the printer. My ideal solution would be a tool that would

RE: Sending Faxes through Cold Fusion

2005-11-17 Thread Tim Laureska
Me too plz - plz -Original Message- From: Justin D. Scott [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 10:02 AM To: CF-Talk Subject: RE: Sending Faxes through Cold Fusion I wrote a small app in Visual Basic a few years ago that did exactly that. I might still have that

Re: eclipse tag attribute insight

2005-11-17 Thread Ryan Guill
No, wasn't me. But I'll head on over there and ask though. Thanks, On 11/17/05, Munson, Jacob [EMAIL PROTECTED] wrote: cfqueryparam does give me tag insight, and most other things work for me as well. You might join the cfeclipse mailing list and ask this question there

Re: Sending Faxes through Cold Fusion

2005-11-17 Thread Daniel Hikel
Me too please. May be you put this on an ftp? Thanks Daniel - Original Message - From: Tim Laureska [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, November 17, 2005 4:08 PM Subject: RE: Sending Faxes through Cold Fusion Me too plz - plz -Original

Re: Sending Faxes through Cold Fusion

2005-11-17 Thread Protoculture
ok, I'll have a look to see if I still have it. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today.

RE: php translation

2005-11-17 Thread Kevin Aebig
Actually, that's incorrect. Count() only works with arrays. And it just so happens that's what it's counting... =] To try and clarify, $_FILES is an array that has info about all the files uploaded to that particular page. Inside each element of this array is a sub-array with statistical data

Re: CF 7 on website

2005-11-17 Thread Larry Lyons
Anyone here using the Deerfield website software with CF 7? I thought that Deerfield Website went the way of the dodo at least 2 years ago. Its not even mentioned on the deerfield site. regards, larry -- Larry C. Lyons Web Analyst BEI Resources American Type Culture Collection email:

cfimport and application.cfm

2005-11-17 Thread Rich Kroll
Does anyone know of a reason why a cfimport would fail when moved to the application.cfm? I've created a set of UI components that we're going to be using site wide, and am importing them as cfimport prefix=ui taglib=/system/ui and then using them in pages via ui:link text=mytext link=index.cfm

RE: cfimport and application.cfm

2005-11-17 Thread Ben Nadel
CFIMPORT needs to be placed in every template that is using the tags... can't have a global include. ... Ben Nadel Web Developer Nylon Technology 6 West 14th Street New York, NY 10011 212.691.1134 212.691.3477 fax www.nylontechnology.com Always confident, seldom correct.

RE: cfimport and application.cfm

2005-11-17 Thread Dave Watts
Does anyone know of a reason why a cfimport would fail when moved to the application.cfm? Yes, the docs say exactly that: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/h tml/wwhelp.htm?context=ColdFusion_Documentationfile=part_cfm.htm Dave Watts, CTO, Fig Leaf

FCKEditor and uploading images

2005-11-17 Thread Jennifer Gavin-Wear
Hi all, Just got it all working and going to try documenting how. I have one remaining bug. Uploading a pic, creating folders, all works fine. But when I have an existing pic in a doc and try to change it using properties I get script error. So it means deleting a pic and adding a new one

FCKEditor and uploading images

2005-11-17 Thread Jennifer Gavin-Wear
Ooops .. meant to say you can see it running here .. http://cms.fasttrackonline.co.uk/ No comments on design please, it's a test and I know it look awful, lol Jenny ~| Logware (www.logware.us): a new and convenient web-based

Re: Debug output not showing on page with an Iframe

2005-11-17 Thread Dave Phillips
Yes, the iframe tag was closed like this iframe . / However, when I closed it with a standard /iframe, the debugging output showed. This appears to be a bug as shouldn't ColdFusion recognize the / and /iframe equally? To reproduce it, try this: Create a file called test1.cfm and in it

RE: cfimport and application.cfm

2005-11-17 Thread Rich Kroll
*looks sheepish* Next time I'll be _fully_ reading the docs before I post. Anyone have a way that I can enable the custom prefix of a tag library within every page of my site, including includes? Rich Kroll Application Developer SITE Manageware, Inc. -Original Message- From: Dave Watts

RE: Sending Faxes through Cold Fusion

2005-11-17 Thread Andrew Tyrone
-Original Message- From: Justin D. Scott [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 10:06 AM To: CF-Talk Subject: RE: Sending Faxes through Cold Fusion Google HTMLDOC. If I remember correctly it's free and does everything you are looking for. Thanks Terry,

Re: CF 7 on website

2005-11-17 Thread Stephen Moretti
Michael Dinowitz wrote: Anyone here using the Deerfield website software with CF 7? Are you still using Deerfield website after all these years? I didn't think they made/supported it any more ~| Logware

RE: A ColdFusion Templating Language

2005-11-17 Thread Hugo Ahlenius
|I've just posted a free CFML templating engine and I was wondering if I |could get some feedback on. I'm using this template engine for a |current project and I thought that it would probably be useful to other |developers... so please have a look and your feedback would be |appreciated!!!

RE: Sending Faxes through Cold Fusion

2005-11-17 Thread Scott Stewart
I'd be careful with HTMLDoc, it doesn't support shrink to fit, it also doesn't compensate for IE's tendency to print off the right side of the page. This is a pretty well known bug, and they had no knowledge of it. Since generating PDF's is essentially a print process, the bug falls over into the

Re: CF Hosting

2005-11-17 Thread Ali Awan
That's true of course, as you said. But that's why I look out for the one or 2 bad reviews. If they're just one liners I ignore them. But if the one bad review covers almost a page, then I pay attention and if there are like 50 1-liner good reviews after that saying this hosting site rocks,

Re: FCKEditor and uploading images

2005-11-17 Thread Phill B
I was walking thru this and step 4 doesn't match what I have. 4. Open up %mysite_root%/fckeditor/browsers/default/connectors/cfm/config.cfm that path doesn't exist for me. I found the file here FCKeditor\editor\filemanager\browser\default\connectors\cfm Did I miss some thing? By the way, nice

Re: nested array and structure loop inside cfmail....

2005-11-17 Thread Protoculture
I tried this with the loop attribute set to query and got the following error. So CF does not like the way I am referencing the query object that is contained in a structure which is contained in an array help! Complex object types cannot be converted to simple values. The expression has

RE: cfimport and application.cfm

2005-11-17 Thread RADEMAKERS Tanguy
Anyone have a way that I can enable the custom prefix of a tag library within every page of my site, including includes? find . -name *.cfm | xargs grep -L cfimport prefix=\ui\ taglib=\/system/ui\ | xargs sed -i.bak -e 1icfimport prefix=\ui\ taglib=\/system/ui\ Execute from the root of your cf

Calendar Application

2005-11-17 Thread Jeff Langevin
Hey folks, I was wondering if anyone can recommend a calendar app that fits the following criteria. I've searched around including on the exchange. I've found a couple of decent ones, but none of them seem to have built in search functionality. And, while it wouldn't be tough to

Re: PDF Question

2005-11-17 Thread Bryan Stevenson
iText from SourceForge will do thatand iText is installed as part of CF 7 (behind CFDOCUMENT)...so if yer on 7 you have it already. Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail:

RE: Sending Faxes through Cold Fusion

2005-11-17 Thread Andrew Tyrone
-Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 11:52 AM To: CF-Talk Subject: RE: Sending Faxes through Cold Fusion I'd be careful with HTMLDoc, it doesn't support shrink to fit, it also doesn't compensate for IE's tendency to

RE: A ColdFusion Templating Language

2005-11-17 Thread Jon Block
I don't think you are coming across as negative... the problem I'm solving for is that I have written systems where the end user wants to access various variables and queries in my CF based system. I don't want to let the user edit ColdFusion code becuase they'd be able to access just about

Problem with Oracle stored proc result

2005-11-17 Thread Steve Ray
I'm dealing with an Oracle stored procedure which is coded to only return it's ref cursor if a lookup function within the procedure verifies that the user has rights to run it. If the user doesn't have the correct rights, a message gets returned *instead*. I've coded a cfprocparam to handle

Re: Problem with Oracle stored proc result

2005-11-17 Thread Deanna Schneider
Well, I'd generally not design it like that. A stored procedure should do one of two things: return the variable it says it will return or throw an error. I'd probably have it throw a custom oracle error if the person doesn't have permission to run it, and do a try catch in CF to trap that

Re: FCKEditor and uploading images

2005-11-17 Thread Matt Robertson
The problem I have is getting the editor from there to somewhere other than the web root. Its supposed to be portable. The comments in the files indicate it can be moved around, but I couldn't figure out the right way to accomplish the danged task. There's a var in there IIRC that is labelled

Re: Problem with Oracle stored proc result

2005-11-17 Thread Tanguy Rademakers
1) always return BOTH a message AND a resultset, but if the user doesn't have the appropriate privs, return an empty resultset. Check the message using cfif. or 2) if the user doesn't have the appropriate privs, raise an error in the proc, and catch that with cftry/cfcatch in coldfusion. Since

Re: Problem with Oracle stored proc result

2005-11-17 Thread Steve Ray
Well, I'd generally not design it like that. A stored procedure should do one of two things: return the variable it says it will return or throw an error. I'd probably have it throw a custom oracle error if the person doesn't have permission to run it, and do a try catch in CF to trap that

Re: SOT: eclipse tag attribute insight

2005-11-17 Thread Barney Boisvert
I've had weird issues on occasion where you need to have some valid content saved after your cursor insert position in order for attribute insight to work correctly attribute value insight always works. Adding the first method to an empty CFC always has the issue, and adding a new method to the

RE: Calendar Application

2005-11-17 Thread Peterson, Andrew S.
Jeff, Long lng ago I incorporated a calendar app into a CMS I built. It's not fusebox, and the backend is MS Access. Do you (or anyone) still want it? If so, I'll zip it up and send you a link. Sincerely, Andrew -Original Message- From: Jeff Langevin [mailto:[EMAIL PROTECTED]

Re: Calendar Application

2005-11-17 Thread Ray Champagne
Andrew, I'd love a copy. I have a calendar app need coming up in the next week. That would be sweet. ray [at] cvwp [dot] com Thanks, Ray Peterson, Andrew S. wrote: Jeff, Long lng ago I incorporated a calendar app into a CMS I built. It's not fusebox, and the backend is MS Access.

Re: SOT: eclipse tag attribute insight

2005-11-17 Thread Ryan Guill
that may very well be the issue here. It does seem like it is working sometimes for some tags and not for others the more I use it today. On 11/17/05, Barney Boisvert [EMAIL PROTECTED] wrote: I've had weird issues on occasion where you need to have some valid content saved after your cursor

RE: Calendar Application

2005-11-17 Thread Adkins, Randy
I would.. Thanks! -Original Message- From: Peterson, Andrew S. [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 1:49 PM To: CF-Talk Subject: RE: Calendar Application Jeff, Long lng ago I incorporated a calendar app into a CMS I built. It's not fusebox, and the backend

Re: Calendar Application

2005-11-17 Thread Dan Blickensderfer
Andrew, I would also like a copy. Thanks, Dan - Original Message - From: Peterson, Andrew S. [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, November 17, 2005 1:48 PM Subject: RE: Calendar Application Jeff, Long lng ago I incorporated a calendar app

Re: Calendar Application

2005-11-17 Thread Aaron Rouse
I started to build one for a project that used Simon's Calendar API. http://www.horwith.com/index.cfm?mode=entryentry=C8837FD9-E081-0478-47F93823F4029950 Then the last time this was asked on the list I saw this calendar mentioned but never tried it. http://calendar.viviotech.net/ On 11/17/05,

RE: A ColdFusion Templating Language

2005-11-17 Thread Munson, Jacob
I don't think you are coming across as negative... the problem I'm solving for is that I have written systems where the end user wants to access various variables and queries in my CF based system. I don't want to let the user edit ColdFusion code becuase they'd be able to access just about

RE: Calendar Application

2005-11-17 Thread Peterson, Andrew S.
At www.springfieldfirst.com/calendar.zip is a 1.2 MB file containing the calendar. The DSN to set up in the Administrator is Calendar (which connects to calendar.mdb), and you can log in with admin/admin. Lemme know if you have any problems. It's a great little calendar that I didn't write :-)

Re: PDF Question

2005-11-17 Thread Sam Farmer
Bryan and Neil, Is there any chance you could post some code showing how you did this? I'm about to start a project where I will need to do exactly this. Thanks, Sam On 11/17/05, Bryan Stevenson [EMAIL PROTECTED] wrote: iText from SourceForge will do thatand iText is installed as part of

Re: PDF Question

2005-11-17 Thread Bryan Stevenson
I haven't done itbut I've seen the docs on SourceForge (and have use iText to generate complex PDFs on the fly pre MX 7) ;-) Perhaps you should let us know if you are familiar with CreatObject() and using Java in CF.if so...go read the iText tutorials on concantenating PDFs and you'll

Re: Problem with Oracle stored proc result

2005-11-17 Thread Steve Ray
2) if the user doesn't have the appropriate privs, raise an error in the proc, and catch that with cftry/cfcatch in coldfusion. Since you can assign an error number and message (RAISE_APPLICATION_ERROR in pl/sql) which will then be available to your cf code through cfcatch. message, you

Re: A ColdFusion Templating Language

2005-11-17 Thread Barney Boisvert
He means users of you app want to control the formatting on the site, without having to change any CF templates. So instead of having a mess of CF to format all the HTML, you have a mess of templates written in his templating language to format the HTML. Users can edit those template via the web

RE: Cfparam question

2005-11-17 Thread Andy Matthews
I've done this before. In my admin pages, MOST of the text fields are tied directly to database fields of the same name. In the edit portion of the code, I select all of the information for that record, then use the columnlist attribute of the cfquery to loop over a cfparam tag like so: cfquery

Re: A ColdFusion Templating Language

2005-11-17 Thread Ken Ferguson
It seems to me as if it's supposed to be similar to the Smarty template engine used by so many PHP apps. I've used a couple apps built around the Smarty template engine and have been rather impressed. I've yet to research this CF version very much, but I plan to take a look at it as soon as I

Upper/Lowercase

2005-11-17 Thread J W
IS there a better way to find out if a character is Upper or lowercase other than cfif (Asc(X) gte 65) and (Asc(X) lte 90) or cfif (Asc(X) gte 97) and (Asc(X) lte 122) where X is the letter I am comparing??? I've seen some sample code of making a CF function for ISUpperCase and IsLowerCase. It

Re: Upper/Lowercase

2005-11-17 Thread Charlie Griefer
not necessarily better...but an alternative could be: cfset myLetter=q / cfif refind('[A-Z]', myLetter) GT 0 uppercase cfelseif refind('[a-z]', myLetter) GT 0 lowercase cfelse i have no idea /cfif reFind() is case-sensitive. or to UDF it: cfscript function

CF Flex Adapter and VOs.

2005-11-17 Thread Nathan Hunsaker
I've been developing a framework that uses a CMS to return strutured data back to Flash via ColdFusion's remoting gateway. Right now I have something like a TO which mixes a bit of data formating in for each content type (article, image, etc) but I've been trying to figure out a way to return

RE: Cfparam question

2005-11-17 Thread Bobby Hartsfield
Had to do it... cfloop index=field list=#getThis.columnlist# cfparam name=form.#field# default=#getThis[field]# /cfloop that’s only if you want the values from the database to be the default values of the fields though. Just use default= if that’s not what you're looking to do.

RE: Upper/Lowercase

2005-11-17 Thread Bobby Hartsfield
Don’t compare() and find() both match case? ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: J W [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 3:48 PM To: CF-Talk Subject: Upper/Lowercase IS there a better way to find out if

RE: Upper/Lowercase

2005-11-17 Thread Bobby Hartsfield
you can also compare the binary of the two letters ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: J W [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 3:48 PM To: CF-Talk Subject: Upper/Lowercase IS there a better way

Re: Upper/Lowercase

2005-11-17 Thread Charlie Griefer
yes but for compare() you'd be comparing a letter to...another letter. so it would effectively take 26 compare() statements to determine if a value was upercase or lowercase :) On 11/17/05, Bobby Hartsfield [EMAIL PROTECTED] wrote: Don't compare() and find() both match case?

Re: Cfparam question

2005-11-17 Thread Aaron Rouse
If you did want the value to be that of what is in the database. Why not just put it in the html tags, when the query returned a zero record count you would get blank values put in so an empty form. When it returned the record then you get what was populated/inserted. On 11/17/05, Bobby

RE: Upper/Lowercase

2005-11-17 Thread Bobby Hartsfield
Yup... #compare(A, a)# = -1 #compare(A, A)# = 0 #find(A, a)# = 0 #find(A, A)# = 1 ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 4:18 PM To: CF-Talk Subject:

RE: Upper/Lowercase

2005-11-17 Thread Bobby Hartsfield
Or 52... I did't know that. Thanks for the tip. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 4:22 PM To: CF-Talk Subject: Re: Upper/Lowercase yes but for

Re: Upper/Lowercase

2005-11-17 Thread Ken Ferguson
cfparam name=url.n default=n cfif compare(n, ucase(n)) gt 0 value: #n# is lowercase cfelse value: #n# is uppercase /cfif --Ferg Bobby Hartsfield wrote: Yup... #compare(A, a)# = -1 #compare(A, A)# = 0 #find(A, a)# = 0 #find(A, A)# = 1 ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield

RE: A ColdFusion Templating Language

2005-11-17 Thread Jon Block
Ferg, This is similar to the Smarty templating system, which I think is just great by the way. The thing is that since ColdFusion, is itself, a templating language, why would anybody have ever created a templating language for ColdFusion? It's totally redundant. Doing web templates in plain PHP

Re: Upper/Lowercase

2005-11-17 Thread Charlie Griefer
dammit. i like that one :) On 11/17/05, Ken Ferguson [EMAIL PROTECTED] wrote: cfparam name=url.n default=n cfif compare(n, ucase(n)) gt 0 value: #n# is lowercase cfelse value: #n# is uppercase /cfif --Ferg Bobby Hartsfield wrote: Yup... #compare(A, a)# = -1 #compare(A, A)# = 0

Re: CF Flex Adapter and VOs.

2005-11-17 Thread Douglas Knudsen
I'd try posting this on the flexcoders list. I know using Java POJOs as ROs this is done by registering teh AS object with a POJO public static var registered:Boolean = Object.registerClass( com.foo.suey.ChopVO, ChopVO ); and bamm! Note that the AS object must have a noargs constructor. DK

Re: Upper/Lowercase

2005-11-17 Thread Ken Ferguson
Of course, you'll need to take steps to make sure that the variable is only one letter, but that comparison will work just fine given that one limitation. --Ferg Ken Ferguson wrote: cfparam name=url.n default=n cfif compare(n, ucase(n)) gt 0 value: #n# is lowercase cfelse value: #n# is

RE: Upper/Lowercase

2005-11-17 Thread Munson, Jacob
You could also use a regular expression: cfif REFind([[:upper:]], X) gt 0 or cfif REFind([[:lower:]], X) gt 0 -Original Message- From: J W [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 1:48 PM To: CF-Talk Subject: Upper/Lowercase IS there a better way to find out if

Re: FCKEditor and uploading images

2005-11-17 Thread Phill B
Hey Mike. We got the same 500 error too. Did you figure out the problem? On 11/16/05, Mike Kear [EMAIL PROTECTED] wrote: I think the 2.1.1 version is better in a lot of ways - it's more CF aware for a start. But i havent been able to get the image browser or uploading to work. I've edited

RE: FCKEditor and uploading images

2005-11-17 Thread Jennifer Gavin-Wear
Hi Matt, I read in the docs that it is only designed to go into root. The next version will allow installation into other directorys. Jenny -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: 17 November 2005 18:11 To: CF-Talk Subject: Re: FCKEditor and uploading

RE: FCKEditor and uploading images

2005-11-17 Thread Jennifer Gavin-Wear
Hi Phil, It is in the docs and it is needed to work. Jenny -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: 17 November 2005 16:55 To: CF-Talk Subject: Re: FCKEditor and uploading images I was walking thru this and step 4 doesn't match what I have. 4. Open up

RE: FCKEditor and uploading images

2005-11-17 Thread Jennifer Gavin-Wear
Phil, Did you see the following? http://wiki.fckeditor.net/Developer%27s_Guide/Integration/ColdFusion This describes my step 4 ... Jenny -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: 17 November 2005 21:40 To: CF-Talk Subject: Re: FCKEditor and uploading images

Re: FCKEditor and uploading images

2005-11-17 Thread Matt Robertson
On 11/17/05, Jennifer Gavin-Wear [EMAIL PROTECTED] wrote: Hi Matt, I read in the docs that it is only designed to go into root. The next version will allow installation into other directorys. Where did you see that? This is in the config.cfm: config.serverPath = ; // use

OT:Coldfusion Podcast Episode 4 Released

2005-11-17 Thread ColdFusion Pocast
We recently uploaded episode 4 of our podcast series dealing with Flash forms in CF. Hope all those who listen enjoy it and hope that others who have not visited will too. http://www.coldfusionpodcast.com Thanks! Michael ~|

Re: FCKEditor and uploading images

2005-11-17 Thread Phill B
I followed everything to the letter and it wont work. I try the sample code and it works perfectly. Very odd. On 11/17/05, Jennifer Gavin-Wear [EMAIL PROTECTED] wrote: Phil, Did you see the following? http://wiki.fckeditor.net/Developer%27s_Guide/Integration/ColdFusion This describes my

Re: OT:Coldfusion Podcast Episode 4 Released

2005-11-17 Thread Jerry Johnson
I missed episode 3? *plugs in iPod and calls up iTunes* On 11/17/05, ColdFusion Pocast [EMAIL PROTECTED] wrote: We recently uploaded episode 4 of our podcast series dealing with Flash forms in CF. Hope all those who listen enjoy it and hope that others who have not visited will too.

CFUNITED-06 call for speakers ends 11/18/05 and CSS class 11/29/05

2005-11-17 Thread Michael Smith
The CFUNITED-06 call for speakers and topics ends this Friday 11/18/05. Help tell us what topic and speakers you must see this summer! And don't miss the only CSS hands on class this year on 11/28/05 with CSS expert Sandra Clark. - Michael Smith TeraTech TeraTech is hiring a senior developer to

Re: Upper/Lowercase

2005-11-17 Thread Claude Schneegans
CFSET upper = uCase(char) CFIF upper EQ lCase(char) char not e letter CFELSIF upper EQ char char is an upper case letter CFELSE char is a lower case letter /CFIF -- ___ REUSE CODE! Use custom tags; See

Re: Sending Faxes through Cold Fusion

2005-11-17 Thread Ali Awan
Where i work, we have a faxserver. To send faxes, we create either RTF or PDF attachments and then do CFFILE write, to the faxserver. Basically we write to the faxservers control file. It takes certain parameters, such as the Destination Fax Number, and Attachment. The attachment is the RTF

RE: FCKEditor and uploading images

2005-11-17 Thread Jennifer Gavin-Wear
Hi Matt, It's in the docs on the wiki site. Jenny -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: 17 November 2005 22:04 To: CF-Talk Subject: Re: FCKEditor and uploading images On 11/17/05, Jennifer Gavin-Wear [EMAIL PROTECTED] wrote: Hi Matt, I read in the

RE: FCKEditor and uploading images

2005-11-17 Thread Jennifer Gavin-Wear
Hi Phil, Sorry if this is a dumb question, but how are you actually trying to run the editor? I'm happy to post my cf code if it will help? Jenny -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: 17 November 2005 22:24 To: CF-Talk Subject: Re: FCKEditor and uploading

RE: A ColdFusion Templating Language

2005-11-17 Thread Munson, Jacob
it's a safe tool for users who want to create design templates in your system. I guess I'm still confused. Why couldn't you let people design CSS style sheets or something like that? This transmission may contain information that is privileged, confidential and/or exempt from disclosure

Re: FCKEditor and uploading images

2005-11-17 Thread Phill B
What I have done is taken the sample02_mx.cfm file and loaded it after making all the necessary changes to the fckconfig.js file, set the application vars and set config.enabled to true. I have fckeditor in the root of the website On one site on my server it works perfectly. I set up a second

  1   2   >