Re: Limiting RSS Records

2009-03-20 Thread Charlie Griefer
2009/3/20 Steve LaBadie slaba...@po-box.esu.edu I am pulling an RSS feed from a 3rd party events calendar and want to limit how many events show on a page. The only control I have at the moment is to set the day_count which is currently set to 2. Any help/guidance would be appreciated.

Re: String to List?

2009-03-19 Thread Charlie Griefer
Nope. any character can be a delimiter. you can consider the 'c' in 'abcdef' a delimiter between 'ab', and 'def'. But yeah, there has to be a delimiter. I don't think there's a way to do it other than what you've come up with... looping over the string and inserting the desired delimiter. Of

Re: String to List?

2009-03-19 Thread Charlie Griefer
Had to look up what the \B represented. \B matches at any position between two word characters as well as at any position between two non-word characters. holy crap that is really cool :) On Thu, Mar 19, 2009 at 3:11 PM, Peter Boughton bought...@gmail.com wrote: Of course, this is usually

Re: String to List?

2009-03-19 Thread Charlie Griefer
holy crap that is really cool :) On Thu, Mar 19, 2009 at 3:02 PM, Dominic Watson watson.domi...@googlemail.com wrote: This also does it quite nicely: cfset list = ArrayToList( myString.toCharArray() ) / Dominic 2009/3/19 Peter Boughton bought...@gmail.com: holy crap that is really

(ot) web site analytics

2009-03-17 Thread Charlie Griefer
Hey all: I need to evaluate some analytics packages for a client. Primary concern is the ability to do goal setting and/or funneling. They have a number of multi-step processes on their site, and want to be able to track the points at which people exit the process without finishing. Google

Re: ColdFusion 8 Certification

2009-03-17 Thread Charlie Griefer
On Tue, Mar 17, 2009 at 1:13 PM, N K neetukais...@gmail.com wrote: Hi All, It would be helpful if you all could give some advice/suggestions as I am planning to give my Adobe CF8 certification exam.Benforta Book for CF8 certification exam is still not out. -study material would be

Re: Append Arrays with Structures

2009-03-11 Thread Charlie Griefer
it's been said over and over in this thread. arrayAppend() returns a boolean. if you do cfset session.pageList = arrayAppend(myArray, structNew()) /, you're essentially setting the value of session.pageList to true. Then, when you try to run an array function on session.pageList, you get the

Re: CF Structures.. brain fried

2009-03-09 Thread Charlie Griefer
not seeing the need to convert the query to a struct. cfset session.myQuery = myQuery / cfoutput query=session.myQuery #session.myQuery.ID# #session.myQuery.name#br / (or, if you don't want to fully qualify the names...) #ID# #name#br / /cfoutput depending on how your app is

Re: order query object

2009-03-03 Thread Charlie Griefer
On Tue, Mar 3, 2009 at 1:10 PM, Chad Gray cg...@careyweb.com wrote: Say I have a CFC that returns a query object. When I go to output the data can I sort the query object on the display page? This way I don't have to have an ORDER BY in the SQL in the CFC. I could do the order by or

Re: cfinclude template issues

2009-02-19 Thread Charlie Griefer
CF uses / to indicate a mapping (an alias to a specific location). by default, the / alone is a mapping to the web root. in the CF Admin, you can set up additional mappings, such that /products could point to c:\inetpub\wwwroot\foo\bar\products since you're using /products/bf.cfm, unless there

Re: cfinclude template issues

2009-02-19 Thread Charlie Griefer
On Thu, Feb 19, 2009 at 2:51 PM, Scott Weber swe...@thanksal.com wrote: I guess I now know more about CF then I did yesterday... That's a good thing :) -- I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

Re: CF posts and CF-talk

2009-02-18 Thread Charlie Griefer
yeah, otherwise those right-eyed people will have the ACLU all over you. On Wed, Feb 18, 2009 at 11:48 AM, Michael Dinowitz mdino...@houseoffusion.com wrote: I have to reorganize the site. desperately. On Wed, Feb 18, 2009 at 2:37 PM, Don L do...@yahoo.com wrote: Did you try the

Re: FireFox getElementById issue

2009-02-18 Thread Charlie Griefer
script type=text/javascript and... are you sure there is only one element with that specific ID? really really sure? On Wed, Feb 18, 2009 at 10:15 PM, Joel Polsky polskystud...@gmail.comwrote: I'm not a javascript expert..but try script = Javascript instead of script = Javascript1.2 On

Re: Online OO courses

2009-02-17 Thread Charlie Griefer
You can't put a price on knowledge. Well, maybe in this case you can. It'd be $2700USD + airfare :) Maybe you can get a bunch of Aussies together and convince Hal to do some on-site training :) On Tue, Feb 17, 2009 at 7:21 PM, Gabriel coldfus...@evolution7.com wrote: Aren't all Hal's

Re: counting questions with cf

2009-02-13 Thread Charlie Griefer
INT should work fine. unless you foresee going over 2,147,483,647 trackable emails (which I suppose is possible... in which case bigint would work as well... it'd just take up twice the space). for the actual SQL, you'd want SET grp1 = grp1 + 1 On Fri, Feb 13, 2009 at 10:44 AM, cfcom

Re: ColdFusion Hosts

2009-02-12 Thread Charlie Griefer
was under the impression they put ads on the sites... if he's looking to show a finished product to a client, the client may not want to see ads :) On Thu, Feb 12, 2009 at 9:07 AM, Jordan Michaels jor...@viviotech.netwrote: How about free? http://www.freecoldfusionhosting.com/ They offer

Re: ColdFusion Hosts

2009-02-12 Thread Charlie Griefer
Committee Adobe Solution Provider Charlie Griefer wrote: was under the impression they put ads on the sites... if he's looking to show a finished product to a client, the client may not want to see ads :) On Thu, Feb 12, 2009 at 9:07 AM, Jordan Michaels jor...@viviotech.net wrote: How

Re: Array of textboxes in cfform

2009-02-11 Thread Charlie Griefer
cfloop from=1 to=10 index=curIndex cfset val = Form[theTextBox_ curIndex] / cfloop On Wed, Feb 11, 2009 at 8:04 AM, Nupur Gupta nupurgupta0...@gmail.comwrote: I have a set of textboxes in a form as cfloop from=1 to=10 index=curIndex cfinput type=text name=theTextBox_#curIndex#

Re: ColdFusion Hosts

2009-02-11 Thread Charlie Griefer
if you're really just looking for a place to throw stuff up, i don't think you'll get cheaper than hostingatoz.com. On Wed, Feb 11, 2009 at 7:47 PM, Robert Bailey cft...@tropicalbean.comwrote: I am trying to find a decent CF8 hosting company that offers SQL Server. The company I am working

Re: javascript debugger for ie

2009-02-04 Thread Charlie Griefer
On Wed, Feb 4, 2009 at 7:19 AM, Claude Schneegans schneeg...@internetique.com wrote: What about installing a user agent switcher add on for firefox? this way you can sort of be testing in IE, Excuse a may be silly question, but how just switching the agent can help debugging? Firefox

Re: javascript debugger for ie

2009-02-04 Thread Charlie Griefer
On Wed, Feb 4, 2009 at 10:34 AM, Dave Watts dwa...@figleaf.com wrote: I've not tried it. My assumption would be that if Firefox is rendering it as if it were being rendered in IE, then the JS would behave as if it were IE. Seems like a logical conclusion. But no.. I've not tried it

Re: This CFC function and jQuery Ajax stuff is killing me...

2009-02-04 Thread Charlie Griefer
no no no no no. again CF = server side. JS = client side. if you pass JSON -to- the server -from- the client, you can use cfjson to create coldfusion structures with it. Or, if you're on CF8, you can just use the built-in deserializeJSON(). But (again)... if you've SENT data FROM

Re: This CFC function and jQuery Ajax stuff is killing me...

2009-02-04 Thread Charlie Griefer
On Wed, Feb 4, 2009 at 11:32 AM, Rick Faircloth r...@whitestonemedia.comwrote: Oh, Charlie...you make me sad... well now you sound like my wife and her mother. Yeah, I get the server-side vs client-side...I was just hoping that somehow I would get to work with CF code back on the

Re: Antigen Notification

2009-02-04 Thread Charlie Griefer
i got a few of them off of that thread. On Wed, Feb 4, 2009 at 11:42 AM, Claude Schneegans schneeg...@internetique.com wrote: Hi, Wondering if other people are receiving this message for every message they post here: Microsoft Antigen for Exchange found a message matching a filter. The

Re: Antigen Notification

2009-02-04 Thread Charlie Griefer
just forwarded you a couple. On Wed, Feb 4, 2009 at 11:54 AM, Michael Dinowitz mdino...@houseoffusion.com wrote: can you forward me the entire message so I can look it over and stop it. I just need to see who's address is generating these. Thanks On Wed, Feb 4, 2009 at 2:42 PM, Claude

Re: Antigen Notification

2009-02-04 Thread Charlie Griefer
On Wed, Feb 4, 2009 at 12:04 PM, Dave Watts dwa...@figleaf.com wrote: I'm getting them every time I post to CF. Just yelled at my network guy... whoops. We'll he was due anyway. Oh, I'll bet you'll pay for that. he'll laugh at that when he sees it next week after his internet

Re: javascript debugger for ie

2009-02-04 Thread Charlie Griefer
On Wed, Feb 4, 2009 at 12:02 PM, Dave Watts dwa...@figleaf.com wrote: What would be the advantage of switching the user agent otherwise? I can see if maybe a particular site only supported a given browser... would there be others? Just curious. You can use it to tell the server to

Re: This CFC function and jQuery Ajax stuff is killing me...

2009-02-04 Thread Charlie Griefer
On Wed, Feb 4, 2009 at 12:31 PM, Rick Faircloth r...@whitestonemedia.comwrote: PS - When all you've got is a hammer, everything looks like a nail! PPS - that's not a good thing :) -- I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind

Re: javascript debugger for ie

2009-02-04 Thread Charlie Griefer
On Wed, Feb 4, 2009 at 1:54 PM, Dave Watts dwa...@figleaf.com wrote: ...and now I'm lost :) I'd normally assume that by don't work you mean they don't render properly. But with that being the crux of this particular tangent, I'm assuming that's not what you mean. What server side code

Re: Since 172.22.1.150 is an RFC 1918 address (from the 172.16/12 range) you need to look on whichever intranet you found that address and not on a public mailinglist. If I start looking for 172.20.1.

2009-02-03 Thread Charlie Griefer
longest. subject. ever. :) On Tue, Feb 3, 2009 at 12:16 PM, Jochem van Dieten joch...@gmail.comwrote: Jochem -- Jochem van Dieten http://jochem.vandieten.net/ ~| Adobe® ColdFusion® 8 software 8 is the most important

Re: javascript debugger for ie

2009-02-03 Thread Charlie Griefer
i haven't really used it much... but really nothing holds a candle to firebug. What about installing a user agent switcher add on for firefox? this way you can sort of be testing in IE, yet have firebug available? https://addons.mozilla.org/en-US/firefox/addon/59 On Tue, Feb 3, 2009 at 3:16

Re: javascript debugger for ie

2009-02-03 Thread Charlie Griefer
http://www.debugbar.com/ http://www.my-debugbar.com/wiki/CompanionJS/HomePage On Tue, Feb 3, 2009 at 2:14 PM, Richard White rich...@j7is.co.uk wrote: hi, sorry for the non-cf question but does anyone know a good opensource JS debugger for IE, that is similar to FireBug for FireFox, and is

Re: No SQL Update!

2009-02-03 Thread Charlie Griefer
StockNo is a char/varchar datatype? On Tue, Feb 3, 2009 at 4:55 PM, b...@bradwood.com wrote: What do you get when you run: SELECT * FROM dbo.Vehicles WHERE (StockNo='3') ~Brad Original Message Subject: RE: No SQL Update! From: Rick Sanders c...@webenergy.ca Date:

Re: No SQL Update!

2009-02-03 Thread Charlie Griefer
no wonder why it didn't update. Time to step away from the puter. Thanks for listening! -Original Message- From: Charlie Griefer [mailto:charlie.grie...@gmail.com] Sent: February-03-09 9:02 PM To: cf-talk Subject: Re: No SQL Update! StockNo is a char/varchar datatype? On Tue, Feb

Re: Why is debugging info showing up in my ajax response?

2009-01-30 Thread Charlie Griefer
what are your debug settings in the cfadmin? if it's set to display debug info, the cfsetting tag on the calling page isn't going to have any effect on the AJAX call. that's an entirely different request. On Tue, Jan 27, 2009 at 3:42 PM, Rick Faircloth r...@whitestonemedia.comwrote: I have

Re: help with using CFCProxy.

2009-01-23 Thread Charlie Griefer
http://www.forta.com/blog/index.cfm?mode=eentry=1756 see comments. On Fri, Jan 23, 2009 at 8:15 AM, cf coder mailinglistid2...@yahoo.comwrote: Do I need the enterprise edition of ColdFusion to use CFCProxy? I'm getting the following error when I instantiate the CFCProxy object:

Re: Replacing Word special characters on output?

2009-01-22 Thread Charlie Griefer
cflib has a function called demoronize. some rich text editors have a special paste from Word button that attempt to clean up the smart quotes and other crappy MS characters. however, it's been my experience that neither these (nor any other automated method that I've heard of) is bulletproof.

Re: Railo Hosting or a very basic VPS to install it on

2009-01-20 Thread Charlie Griefer
if you're happy with HMS, why not just go for their base VPS package? http://www.hostmysite.com/vps/windows/base/ you can install the apps you're talking about on there. On Tue, Jan 20, 2009 at 8:16 AM, Adrian Lynch cont...@adrianlynch.co.ukwrote: I'm looking to reduce costs by getting a basic

Re: AHP Hosting Down... Anyone on AHP?

2009-01-15 Thread Charlie Griefer
for arout 15 to 30 min. I even checked AHP's own http://www.ahphosting.net and it was down as well for the duration as well. Anyway, It seems like everything is back to normal again. Mike -Original Message- From: Charlie Griefer

Re: Calling functions with cfoutput

2009-01-14 Thread Charlie Griefer
You're not outputting it. You're setting it. cfform ... this is a form. cfoutput#doPrint()#/cfoutput /cfform On Wed, Jan 14, 2009 at 9:16 AM, Damayanti Gupta dgu...@archemix.comwrote: I have a cfform. From this I call a function, which has cfoutput tags to output text. However this

Re: AHP Hosting Down... Anyone on AHP?

2009-01-14 Thread Charlie Griefer
i'm on a VPS with AHP, and it seems to be up. On Wed, Jan 14, 2009 at 12:09 PM, Mike Francisco cfmike...@gmail.comwrote: Is anyone being affected by AHP Hosting right now? Mike ~| Adobe® ColdFusion® 8 software 8 is the

Re: Javascript compatibility question

2009-01-13 Thread Charlie Griefer
I think what Adrian's getting at is your reference to the elements should be document.getElementById('foo'), not document.form1.getElementById('foo'). can you give that a shot? On Tue, Jan 13, 2009 at 8:50 AM, Scott Stewart saste...@email.unc.eduwrote: getElementById() is a javascript function

Re: Javascript compatibility question

2009-01-13 Thread Charlie Griefer
do you have multiple elements on the page with the same ID? On Tue, Jan 13, 2009 at 9:17 AM, Scott Stewart saste...@email.unc.eduwrote: tried that, and no love... Charlie Griefer wrote: I think what Adrian's getting at is your reference to the elements should be document.getElementById

Re: Javascript compatibility question

2009-01-13 Thread Charlie Griefer
at that.. but I'll check again. Charlie Griefer wrote: do you have multiple elements on the page with the same ID? On Tue, Jan 13, 2009 at 9:17 AM, Scott Stewart saste...@email.unc.edu wrote: tried that, and no love... Charlie Griefer wrote: I think what Adrian's getting at is your reference

Re: Is it possible to use a CF variable in jQuery?

2009-01-12 Thread Charlie Griefer
erm... did you try? :) On Mon, Jan 12, 2009 at 10:46 AM, Rick Faircloth r...@whitestonemedia.comwrote: $('#input_cfoutput#mls_number#/cfoutput').show()... or var mls_number = cfoutput#mls_number#/cfoutput $('#input_' + mls_number).show()... or ??? Rick

Re: Is it possible to use a CF variable in jQuery?

2009-01-12 Thread Charlie Griefer
I'd ask from the fount of wisdom first, rather than use half-an-hour with trials... :o) -Original Message- From: Charlie Griefer [mailto:charlie.grie...@gmail.com] Sent: Monday, January 12, 2009 1:55 PM To: cf-talk Subject: Re: Is it possible to use a CF variable in jQuery

Re: Anybody out there comtemplating or currently building their own blog?

2009-01-07 Thread Charlie Griefer
http://charlie.griefer.com is running blogCFC. there was some customization to the css and a few small tweaks to cfm files. really, wanting to build your own blog application from scratch because you don't care for the look/feel of what's available is (IMHO) a huge waste of time. the engines are

Re: Desparate!!!! Need someone to look at my code and figure out the problem!

2009-01-07 Thread Charlie Griefer
you don't need to have cookies turned on. as brian said, either turn 'em on or pass the CFID CFTOKEN variables in each request (either via URL or form). session vars rely on the presence of the CFID and CFTOKEN vars to maintain state. this is either done via a cookie, or by passing those vars

Re: Desparate!!!! Need someone to look at my code and figure out the problem!

2009-01-07 Thread Charlie Griefer
On Wed, Jan 7, 2009 at 5:19 PM, Rick Faircloth r...@whitestonemedia.comwrote: Well, after 10 years with CF, I learn something I should have learned with CF 4.5. I thought cookies were on the hard drive and session variables were in memory only. I figured that's why there were separate

Re: Regular Epression Help

2009-01-01 Thread Charlie Griefer
assuming your source is actual/valid XML, why not just use XMLParse()? On Thu, Jan 1, 2009 at 11:29 AM, Paul Kukiel pkuk...@gmail.com wrote: Perfect Thank you very much. On 01/01/2009, at 2:22 PM, Matt Quackenbush wrote: cfscript string = '?xml version=1.0 encoding=utf-8?double

Re: ColdFusion Express?

2008-12-29 Thread Charlie Griefer
. Any advice for someone needing to learn MySQL ? It's supposed to be easy, but it's DOS-window appearance is depressing(!) - Original Message - From: Charlie Griefer charlie.grie...@gmail.com To: cf-talk cf-talk@houseoffusion.com Sent: Monday, December 29, 2008 5:29 AM Subject

Re: What's the best way to bring these records into CF?

2008-12-29 Thread Charlie Griefer
if you're on CF8, deserializeJSON() should work for each of the entities enclosed in the {}, which would give you a struct. i guess the trick is the looping. can't use a comma as a delimiter since the JSON entities have commas inside of them. would a line break/carriage return work as a

Re: What's the best way to bring these records into CF?

2008-12-29 Thread Charlie Griefer
On Mon, Dec 29, 2008 at 11:32 AM, Jochem van Dieten joch...@gmail.comwrote: On Mon, Dec 29, 2008 at 6:42 PM, Charlie Griefer wrote: if you're on CF8, deserializeJSON() should work for each of the entities enclosed in the {}, which would give you a struct. i guess the trick is the looping

Re: ColdFusion Express?

2008-12-28 Thread Charlie Griefer
That version, as has been pointed out, is quite a number of years old. You might be better off downloading the developer's edition of the latest version (CF 8) from Adobe's site. It's free and fully functional (only limitation is that it can only be accessed by 2 external IP addresses... but

Re: finding dynamic form fields after submission

2008-12-19 Thread Charlie Griefer
you can loop over the form.fieldnames value to get the list of fields. or as your form is dynamically generating the fields, update a hidden value with the # of current fields. on the action page, loop from 1 to the value of that hidden field and generate the names dynamically (e.g. form['po'

Re: finding dynamic form fields after submission

2008-12-19 Thread Charlie Griefer
dude. sweet! On Fri, Dec 19, 2008 at 12:51 PM, Brian Kotek brian...@gmail.com wrote: I wrote a CFC a while back that takes form field names that use array or structure syntax and converts them into actual arrays and structures on the CF side (to any arbitrary level of nesting). It's handy

Re: CF Sum

2008-12-18 Thread Charlie Griefer
arraySum(listToArray(valueList(myquery.quantity))) On Thu, Dec 18, 2008 at 10:46 AM, patrick buch patrick.b...@verizon.comwrote: Hi, Now I know you can sum in the query to the db. I was wondering though, is there a way to sum on the results you get back from a query through CF? For

Re: CF Sum

2008-12-18 Thread Charlie Griefer
, Barney Boisvert bboisv...@gmail.comwrote: Or use a query of queries. The arraySum method is probably more performant, but the QofQ method is likely easier to understand what's happening and why. On Thu, Dec 18, 2008 at 10:52 AM, Charlie Griefer charlie.grie...@gmail.com wrote: arraySum

Re: Is it not possible to skip js with cfif?

2008-12-16 Thread Charlie Griefer
it is. (it's also good to use the right comparison operator) On Tue, Dec 16, 2008 at 7:50 PM, Rick Faircloth r...@whitestonemedia.comwrote: Is it not possible to use conditional statements to skip javascript? cfif 1=0 javascript code /cfif Rick

Re: Not exactly cf question but I hope it's relevant to cfers

2008-12-15 Thread Charlie Griefer
On Mon, Dec 15, 2008 at 8:31 PM, Don L do...@yahoo.com wrote: I would think over the years many of us have used various free email accounts, to name a few, years ago, rockmail and hotmail, in recent years, yahoo mail, and most recently gmail, aside from desktop-based email like Outlook, then

Re: Adobe's CF IDE, Bolt

2008-12-10 Thread Charlie Griefer
egad i'd hate to think that's the solution to any problem. On Wed, Dec 10, 2008 at 9:22 AM, Cutter (CFRelated) [EMAIL PROTECTED] wrote: No, Andy's Eclipse is always jacked up. I'm convinced, though, that it's a PEBKAC issue. Or he needs to stop looking at porn on his laptop;) Steve Cutter

Re: Imagecr3 vs cf8 cfimage

2008-12-10 Thread Charlie Griefer
On Wed, Dec 10, 2008 at 8:07 AM, Alan Rother [EMAIL PROTECTED] wrote: RE the support: Really? We've had an error for a while (not critical but annoying that it's not fixed) my colleague emailed them, no reply. Months later I did the same with more info about the problem and code and sample

Re: REreplace function for special characters

2008-12-10 Thread Charlie Griefer
rereplace(foo, '[^\w]', '', 'all') will replace any non-alphanumeric character in 'foo' (assuming 'foo' is the file name). On Wed, Dec 10, 2008 at 1:41 PM, Don L [EMAIL PROTECTED] wrote: Regular Expression gurus. How to use the REreplace function to remove special characters including +, .

Re: REreplace function for special characters

2008-12-10 Thread Charlie Griefer
On Wed, Dec 10, 2008 at 3:02 PM, Peter Boughton [EMAIL PROTECTED] wrote: rereplace(foo, '[^\w]', '', 'all') will replace any non-alphanumeric character No need to complicate things with an inverted character class. \W is same as [^\w] fair enough. good catch. Also, this bugs me

Re: Imagecr3 vs cf8 cfimage

2008-12-09 Thread Charlie Griefer
i haven't worked with the efflare stuff in a while, but every time i see it mentioned i'm compelled to throw in a big two thumbs up. ImageCR is a great product and the efflare staff are awesome with support (quick and helpful). On Tue, Dec 9, 2008 at 1:39 PM, Dave DeVol [EMAIL PROTECTED] wrote:

Re: Adobe's CF IDE, Bolt

2008-12-05 Thread Charlie Griefer
/ne gets popcorn ready... On Fri, Dec 5, 2008 at 12:11 PM, Andy Matthews [EMAIL PROTECTED]wrote: Yes. -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Friday, December 05, 2008 12:26 PM To: cf-talk Subject: RE: Adobe's CF IDE, Bolt Mac only, right?

Re: Use Wordpress or BlogCFC?

2008-12-05 Thread Charlie Griefer
that a euphemism? On Fri, Dec 5, 2008 at 1:45 PM, Jerry Johnson [EMAIL PROTECTED] wrote: He cannot handle the Mango. On Fri, Dec 5, 2008 at 4:15 PM, Matt Quackenbush [EMAIL PROTECTED] wrote: Use mangoblog. :) ~|

Re: replacing first and last occurrences in a string

2008-12-05 Thread Charlie Griefer
scope creep! On Fri, Dec 5, 2008 at 3:40 PM, Mike Little [EMAIL PROTECTED] wrote: thanks heaps barneyb... cfset new_text = reverse(trim(mytext)) cfset new_text = replaceNoCase(new_text, tellub/, lu/il/, One) cfset new_text = reverse(new_text) cfset new_text = replaceNoCase(new_text,

Re: Adobe's CF IDE, Bolt

2008-12-04 Thread Charlie Griefer
i was under the impression that at MAX they announced an alpha/beta wouldn't be available 'til early 2009. On Thu, Dec 4, 2008 at 7:49 AM, Rick Faircloth [EMAIL PROTECTED]wrote: Well, if there's a lot who say they haven't gotten the beta... Tom Chiverton wrote: Had there been word, Adobe's

Re: Adobe's CF IDE, Bolt

2008-12-04 Thread Charlie Griefer
On Thu, Dec 4, 2008 at 7:52 AM, Billy Cox [EMAIL PROTECTED] wrote: Maybe they have to rebrand since Disney's latest non-Pixar movie is named 'Bolt'. I wouldn't want *my* IDE to share a name with a stupid movie. But on a technical note... Is this IDE targeted to current Eclipse users, or is

Re: inserting null values

2008-12-04 Thread Charlie Griefer
that's got nothing to do with your database. you're referencing a form field (#form.name#) that doesn't exist. according to the error, you have no form field with the name name. if there is one and it's a checkbox or radio group (and none are checked or selected), they don't get passed into the

Re: Adobe's CF IDE, Bolt

2008-12-04 Thread Charlie Griefer
and has code folding...that feature alone is worth $100 at least to me... Charlie Griefer wrote: On Thu, Dec 4, 2008 at 7:52 AM, Billy Cox [EMAIL PROTECTED] wrote: Maybe they have to rebrand since Disney's latest non-Pixar movie is named 'Bolt'. I wouldn't want *my* IDE to share a name

Re: Where cf would be tomorrow?

2008-12-03 Thread Charlie Griefer
This is a technical list. It's really not on topic. CF-OT or cf-community would have been more appropriate. On Wed, Dec 3, 2008 at 5:09 PM, Phillip M. Vector [EMAIL PROTECTED] wrote: Why? Even if you don't agree with it, he still has a right to express his opinion on the list. Will

Re: Coldfusion 8 related drop down in the flash cfform

2008-11-26 Thread Charlie Griefer
On Wed, Nov 26, 2008 at 8:41 AM, erik tom [EMAIL PROTECTED] wrote: I am trying to create a related drop down using flash remoting but it does not work. here is my code Be less vague than it does not work. -- I have failed as much as I have succeeded. But I love my life. I love my wife. And

Re: single quote issue

2008-11-25 Thread Charlie Griefer
On Tue, Nov 25, 2008 at 2:11 PM, Brian Dumbledore [EMAIL PROTECTED]wrote: I know this is age old, but couldn't find a solution for my case. Ihave a text area where user inputs 20 single quotes. I post the form and save the data to a field in mssql db. '#form.txtfld#' I see only 10 single

Re: Official ColdFusion IDE announced

2008-11-21 Thread Charlie Griefer
On Fri, Nov 21, 2008 at 6:26 AM, Claude Schneegans [EMAIL PROTECTED] wrote: How long did you try it for ? Long enough to make sure that the problem was not with me, but with the product. You did it wrong. -- I have failed as much as I have succeeded. But I love my life. I love my wife.

Re: Official ColdFusion IDE announced

2008-11-20 Thread Charlie Griefer
On Thu, Nov 20, 2008 at 6:24 AM, Claude Schneegans [EMAIL PROTECTED] wrote: It's not a very comfortable environment for a lot of people, myself included. I'd love to see statistics, but I'm betting less than a third of the community is on it. Free is nice, but comfort is better. Right. I

Re: How to return a structure using ajax?

2008-11-19 Thread Charlie Griefer
On Wed, Nov 19, 2008 at 9:42 AM, Al Musella, DPM [EMAIL PROTECTED]wrote: I am new to ajax.. and my javascript isn't too hot either:) I am trying a simple lookup of a city and state given a zip code. I have it working if I just return a city as a string, but when I try to return a structure

Re: Official ColdFusion IDE announced

2008-11-19 Thread Charlie Griefer
I don't think it's about whatever works as much as it is about whatever is available. There was obviously a wiki already built with PHP that addressed the immediate business needs. What would the ROI be on delaying the launch of the labs site so that a wiki application with the exact same

Re: Official ColdFusion IDE announced

2008-11-19 Thread Charlie Griefer
apps that are out there? It doesn't matter to me one way or the other. I'm just saying that if you go to a site that is promoting a product using another product.. It just looks bad IMHO. Charlie Griefer wrote: I don't think it's about whatever works as much as it is about whatever

Re: Official ColdFusion IDE announced

2008-11-19 Thread Charlie Griefer
Update an application that works perfectly? In an ideal world, maybe. In the real world, very little in the way of justification. I go to the labs site for information. Currently, I get the information I need. If it ain't broke... On Wed, Nov 19, 2008 at 11:11 AM, Phillip M. Vector [EMAIL

Re: Official ColdFusion IDE announced

2008-11-19 Thread Charlie Griefer
great it is and so on. Then you click on the forums section of my site that sells said forum and find phpbb running there. Still interested in buying my forum software? :) Charlie Griefer wrote: Are there many? AFAIK there is Canvas... and CodexWiki (the latter being very new)... so

Re: IDE announced: IDE/Compiler Business Model

2008-11-19 Thread Charlie Griefer
On Wed, Nov 19, 2008 at 12:37 PM, Robert Harrison [EMAIL PROTECTED] wrote: If anything they should charge $500 for an IDE and give away ColdFusion for free That is so much better of a business model. The main problem selling CF web sites is the cost to deploy a site. Too much of the burden

Re: More cfwindow problems

2008-11-19 Thread Charlie Griefer
On Wed, Nov 19, 2008 at 12:58 PM, Scott Spurlock [EMAIL PROTECTED]wrote: I'm pretty new to this whole AJAX thing, so please bear with me. I had tried to implement some cfwindow functionality in the past and didn't find it flexible enough for my needs. So I've been trying to learn jQuery.

Re: How to return a structure using ajax?

2008-11-19 Thread Charlie Griefer
Wow, nice. I didn't know that either. I thought the key names were always returned in uppercase. Thanks for posting it. On Wed, Nov 19, 2008 at 1:12 PM, Al Musella, DPM [EMAIL PROTECTED]wrote: Thanks. I didn't know that.. to save everyone else from having to run it, the output is: Struct

Re: IDE announced: IDE/Compiler Business Model

2008-11-19 Thread Charlie Griefer
On Wed, Nov 19, 2008 at 1:06 PM, Robert Harrison [EMAIL PROTECTED] wrote: - it's definitely hurting sales I can't speak for you, but we've definitely lost a lot of CF sales because of the cost of the server side. A lot of client want to host their own. If the developers are losing sales I

Re: IDE announced: IDE/Compiler Business Model

2008-11-19 Thread Charlie Griefer
On Wed, Nov 19, 2008 at 1:47 PM, Craig Dudley [EMAIL PROTECTED] wrote: That would be me :p Persoanlly I don't care whether they charge me for the server or the IDE, or perhaps even both as long as it's only roughly the same amount in total. I'm in the rather unique position of having one

Re: IDE announced: IDE/Compiler Business Model

2008-11-19 Thread Charlie Griefer
On Wed, Nov 19, 2008 at 2:00 PM, Nick Giovanni [EMAIL PROTECTED] wrote: My point regarding cfeclipse is that it works really, REALLY well CFeclipse has been buggy (for lack of a better term) for me. I prefer the term eccentric :) It's not without its bugs and quirks. But for the most part,

Re: IDE announced: IDE/Compiler Business Model

2008-11-19 Thread Charlie Griefer
On Wed, Nov 19, 2008 at 2:29 PM, s. isaac dealey [EMAIL PROTECTED] wrote: Good Griefer said: In that limited scenario, sure. But how many customers are making purchases... which equates to revenue? By providing a free version, Adobe loses that revenue and gains a few more customers (who

Re: Official ColdFusion IDE announced

2008-11-18 Thread Charlie Griefer
which is why it's nice to have options :) i'll take a look at the features and the price tag and make a choice at that point. On Tue, Nov 18, 2008 at 1:09 PM, Craig Dudley [EMAIL PROTECTED] wrote: If it costs more than $0 I'll carry on using cfeclipse, as will most people I suspect.

Re: Official ColdFusion IDE announced

2008-11-18 Thread Charlie Griefer
On Tue, Nov 18, 2008 at 6:05 PM, Rick Faircloth [EMAIL PROTECTED]wrote: Anyone know if that's so? If you have the beta, you can't even tell anyone you have it? (You could tell me, I guess, but then you'd have to kill me... :oP ) As far as I know, that is so. Legend tells of one particular

Re: Internal Page Links with CF

2008-11-12 Thread Charlie Griefer
On Wed, Nov 12, 2008 at 9:41 AM, Marc Raber [EMAIL PROTECTED] wrote: sorry for the question as i know i have read it before but can't remember. in CF, when i want to have internal links - like a href=#name but name is a variable: a href=##name# how do i do without the ## that messes up the

Re: Internal Page Links with CF

2008-11-12 Thread Charlie Griefer
Since #name# is a variable in this case, I'm assuming it's inside cfoutput tags. On Wed, Nov 12, 2008 at 9:52 AM, Wil Genovese [EMAIL PROTECTED] wrote: You only need to escape pound signs when inside CFOUTPUT tags. On Wed, Nov 12, 2008 at 11:41 AM, Marc Raber [EMAIL PROTECTED] wrote:

Re: OT JavaScript question.

2008-11-12 Thread Charlie Griefer
On Wed, Nov 12, 2008 at 1:14 PM, Ian Skinner [EMAIL PROTECTED] wrote: Yes that is the one I was looking for!. I found 'with' to be a very poor search term on Google, or any search engine for that matter. heh. reminds me of http://bash.org/?514353 :) -- I have failed as much as I have

Re: Passing zipcode as string as struct ... still converts to numeric and trims leading 0

2008-11-11 Thread Charlie Griefer
On Tue, Nov 11, 2008 at 9:48 AM, Azadi Saryev [EMAIL PROTECTED] wrote: Charlie Griefer wrote: CF is typeless, so all simple values are essentially Strings. If the datatype in the db is varchar, you shouldn't be losing the leading 0. You might want to elaborate on the process you're

Re: Passing zipcode as string as struct ... still converts to numeric and trims leading 0

2008-11-11 Thread Charlie Griefer
On Tue, Nov 11, 2008 at 8:30 AM, Jeremy Keith [EMAIL PROTECTED]wrote: I'm loading a form from a cfc, one of those fields is zipcode which up here mostly contain a leading 0. The db object is varchar, and short of checking the string length upon return and padding the 0 if it's only has a

Re: StructKeyExists() + dynamic names

2008-11-11 Thread Charlie Griefer
On Tue, Nov 11, 2008 at 2:31 PM, Won Lee [EMAIL PROTECTED] wrote: We just upgraded from 7 to 8 and I'm getting some unexpected behavior with StructKeyExists. I'm pretty sure this worked before: cfif structkeyexists(arguments.myStruct,'dp' daypartID 'max')../cfif

Re: Coldfusion +Ajax, best route?

2008-11-10 Thread Charlie Griefer
On Mon, Nov 10, 2008 at 4:51 PM, Don [EMAIL PROTECTED] wrote: Should I look into the built-in Ajax stuff with cf8 or go with a third party like JQuery? If you're comfortable with JavaScript, I'd recommend the jQuery method. The CF AJAX stuff shields you from having to write JS... which I

Re: Improvong code and application

2008-11-05 Thread Charlie Griefer
On Wed, Nov 5, 2008 at 9:02 AM, Toby King [EMAIL PROTECTED] wrote: Hi there Without copying and pasting the entire query can you show an example of how/where you can use the cfqueryparam in the code. the docs are pretty clear on the syntax. why don't you check the docs, give it a try, and

Re: cfreturn 2 query values from CFC?

2008-10-29 Thread Charlie Griefer
put 'em in a struct and return the struct. cfset var myStruct = structNew() / cfset var query1 = / cfset var query2 = / cfquery name=query1 ... /cfquery cfquery name=query2 ... /cfquery cfset myStruct.q1 = query1 / cfset myStruct.q2 = query2 / cfreturn myStruct / On Wed, Oct 29, 2008 at

<    1   2   3   4   5   6   7   8   9   10   >