Only update DB if data has changed?

2006-05-26 Thread Andy Mcshane
Hi all, does anybody have any ideas how I could best implement the following; I have a page that loads anything up to about 30 individual records at a time. Each record consists of 17 fields of data. All the records are displayed on the page to give the user the option of editing any individual

RE: Only update DB if data has changed?

2006-05-26 Thread Robertson-Ravo, Neil (RX)
Should be easy enough and no doubt several way s to achieve thisboth in CF Code and in SQL. One way would be to load the records at page load into a structure and then on submit comparing both the pre-edited and post edited form struct to see what has changed etc... -Original

Re: Only update DB if data has changed?

2006-05-26 Thread Andy Mcshane
Yes, I was thinking about using a structure but I am unsure of the best way to do a comparison. Wouldn't this mean having to a field by field comarison or is there a better way? I was wondering if anybody had created a custom tag to do just this sort of thing. Should be easy enough and no

Re: Only update DB if data has changed?

2006-05-26 Thread Dov Katz
To add to this. What many people do is create a Data Object (CFC, for exampe) modeling whatever record you are using here, and then create setXXX and setYYY to assign all the new values. When writing setXXX functions in your CFC, lets say, you simply compare the data, and if it differs, you

Re: Only update DB if data has changed?

2006-05-26 Thread Neil Middleton
Is the problem you are trying to solve related to performance of running too many queries, or from updating some sort of LastUpdated column unnecessarily. On 5/26/06, Andy Mcshane [EMAIL PROTECTED] wrote: Hi all, does anybody have any ideas how I could best implement the following; I have a

Re: Only update DB if data has changed?

2006-05-26 Thread Andy Mcshane
The problem is related to running too many queries which do an awful lot of work in themselves and also the fact that the client refuses to have the option of being able to edit each record individually. Is the problem you are trying to solve related to performance of running too many queries,

Re: Only update DB if data has changed?

2006-05-26 Thread Dirk De Bock - Lists
one way would be to build a string of all elements of 1 field, get the hash of this string and include that as a hidden field, then you do the same for the posted info and compare both hash strings - Original Message - From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] To: CF-Talk

Re: Only update DB if data has changed?

2006-05-26 Thread Jim McAtee
Do you want to do this for a reason, or are you just trying to avoid unnecessary queries? I can see this if you're stamping the records with a timestamp and/or noting the person who updated them, then you might want to avoid marking the record as updated when it actually wasn't. But I'm not

RE: Only update DB if data has changed?

2006-05-26 Thread Michael E. Carluen
Andy, I typically do this: !--- On the Form Page --- input type=text name=field1 value=#form_value_to_edit# input type=hidden name=hidden_field1 value=#original_value# !--- On the Post Page... you can loop and evaluate each field --- cfif FORM.field1 is FORM.hidden_field1 SQL Update

RE: Only update DB if data has changed?

2006-05-26 Thread Michael E. Carluen
Oops... !--- On the Form Page --- input type=text name=field1 value=#form_value_to_edit# input type=hidden name=hidden_field1 value=#original_value# Should be: !--- On the Post Page... you can loop and evaluate each field --- cfif FORM.field1 IS NOT FORM.hidden_field1 SQL Update /cfif

Re: Only update DB if data has changed?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 11:52, Michael E. Carluen wrote: !--- On the Post Page... you can loop and evaluate each field --- cfif FORM.field1 is FORM.hidden_field1 SQL Update /cfif If you follow the pattern of making a hidden field called 'hidden_old_value_X' then you can automate

activedit and FireFox?

2006-05-26 Thread Ray Champagne
OK, I've had it. We took over a client's site, and in their CMS, the developer was using the Activedit Applet to manage her text. It's kind of like FCKEditor. The problem that I have had since I started working on this project is that it completely hates FireFox, keeps telling me that I need

Re: activedit and FireFox?

2006-05-26 Thread James Holmes
This is probably A Stupid Question(TM); does it have to be ActivEdit? Can you use FCK or TinyMCE (i.e. something that works)? On 6/26/06, Ray Champagne [EMAIL PROTECTED] wrote: OK, I've had it. We took over a client's site, and in their CMS, the developer was using the Activedit Applet to

Re: activedit and FireFox?

2006-05-26 Thread Crow T. Robot
Well, yes, when we redesign their entire site in July. We don't want to spend any more unbillable time on the site until then, however. Actually, the plan is to use FCKEditor when we do the resdesign, it happens to be my personal fav. James Holmes wrote: This is probably A Stupid

RE: activedit and FireFox?

2006-05-26 Thread Andy Matthews
Activedit is IE only. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Monday, June 26, 2006

cfreport and Crystal Reports

2006-05-26 Thread kurt schroeder
about 6 years ago i create a custom tag to envoke a Crystal Report. At the time CF and CRW as is would produce an HTML CR not a real CRYSTAL REPORT to be dumped to the printer. Does the current version of CF allow you to create a real CR or is is still HTML?

RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
I know no one asked my opinion here, but I just wanted to say the we use Xstandard (xstandard.com) which is an ActiveX object that created perfect XHtml standards-compliant code. It is the most fantastic WYSIWYG editor that I have ever used and it has fast file uploading, customized directories,

Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 14:08, Ben Nadel wrote: The only tradeoff is that it is not free like FCK editor, And that it's a ActiveX control, and therefore the sooner killed off the better. -- Tom Chiverton This email is sent for and on

RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
What is wrong with ActiveX? ... Ben Nadel www.bennadel.com -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 9:24 AM To: CF-Talk Subject: Re: activedit and FireFox? On Friday 26 May 2006 14:08, Ben Nadel wrote: The only

RE: activedit and FireFox?

2006-05-26 Thread Peterson, Chris
Oh let me count the things wrong A) IE only B) ActiveX is a security hole black-pit C) You have to 'Click to Activate' the control (annoying, g) D) You have to code an alternative for Firefox or ignore a growing visitor base -Original Message- From: Ben Nadel [mailto:[EMAIL

Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 14:28, Ben Nadel wrote: What is wrong with ActiveX? Have you seen the hassle it's caused ever since it was introduced ? IE7 goes to huge lengths to run itself in a protected container, mainly because of ActiveX. -- Tom Chiverton

ANNOUNCE: CFMX 7 upgrade and Fusebox classes June 2006 in Wash DC area

2006-05-26 Thread Michael Smith
Come to an intensive class on Fusebox or CFMX 7 upgrade in Rockville, Maryland. Classes limited to 12 students each so that you can be sure to get your own questions answered! Sign up today to guarantee a place at http://www.teratech.com/training/ - Michael Smith, TeraTech, Inc PS If you can't

RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
Chris, My mistake, perhaps I am confused as to what Xstandard is. Maybe it is not ActiveX ( I am not very familiar with ActiveX ). Xstanard is: A) IE and FireFox (I am a programmer, you think I use IE ;) AND Mac B) Don't know about the security C) You have to click into it to start typeing

RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
Tom, I can appreciate the concern, but with a text editor, the 'click to activate' isn't much of a concern to me (at this point). I have to click into the text area field just to start typeing (or highlight text, or create links, or any other editing-related task). ... Ben

QuickBooks Web Connector Products

2006-05-26 Thread Bud
Hi everyone. I have 2 new programs to announce, 1 commercial, and another freebie for the CF community. I generally do not tout my wares here, but the freebie is hopefully going to be of great help to some of you. So I'm including my new commercial product also. So shoot me. :) Please ask any

RE: activedit and FireFox?

2006-05-26 Thread Mark A Kruger
Um Dumb question but why not just use IE for this task? -Mark -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Monday, June 26, 2006 7:51 AM To: CF-Talk Subject: activedit and FireFox? OK, I've had it. We took over a client's site, and in their CMS, the

Data modelling tool

2006-05-26 Thread Jason Rogoz
Just wanted to find out what data modelling tool everyone was using, I've used Erwin in the past but the company i'm with now doesn't have a license and i'm not sure getting a license will be that easy. I'm looking for one that will create a script to create the database in SQL Server Thanks

Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 15:30, Mark A Kruger wrote: Um Dumb question but why not just use IE for this task? Maybe he doesn't have IE (sensible chap). -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells

Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 15:12, Ben Nadel wrote: My mistake, perhaps I am confused as to what Xstandard is. Maybe it is not ActiveX ( I am not very familiar with ActiveX ). A) IE and FireFox (I am a programmer, you think I use IE ;) AND Mac Firefox *not* on Windows ? Firefox on Windows can use

RE: activedit and FireFox?

2006-05-26 Thread Robertson-Ravo, Neil (RX)
Uurgh, sick of the whole I hate IE shebanglet it lie ;-) I am using IE7 now and I must sayI am liking it. -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: 26 May 2006 15:51 To: CF-Talk Subject: Re: activedit and FireFox? On Friday 26 May 2006 15:30, Mark

RE: activedit and FireFox?

2006-05-26 Thread Robertson-Ravo, Neil (RX)
But surely Firefox on Mac can also use ActiveX ;-) -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: 26 May 2006 15:52 To: CF-Talk Subject: Re: activedit and FireFox? On Friday 26 May 2006 15:12, Ben Nadel wrote: My mistake, perhaps I am confused as to what

RE: activedit and FireFox?

2006-05-26 Thread Dave Watts
Firefox on Windows can use ActiveX controls, iirc, with all their attendant problems. Not without a specific plugin to host those ActiveX controls: http://www.iol.ie/~locka/mozilla/mozilla.htm Out of the box, Firefox can't use ActiveX controls. Dave Watts, CTO, Fig Leaf Software

RE: activedit and FireFox?

2006-05-26 Thread Dave Watts
But surely Firefox on Mac can also use ActiveX ;-) While I seem to recall a version of the ActiveX platform for the Mac at one point, ActiveX controls are platform-specific, and no one actually writes ActiveX controls for the Mac. So, effectively, ActiveX is Windows-only. Dave Watts, CTO, Fig

RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
Tom, I was not aware of that. Like I said, I am not very familiar with ActiveX stuff. But isn't flash ActiveX? That seems to work on all browsers (that I have tried). Sorry for any confusion. ... Ben Nadel www.bennadel.com -Original Message- From: Tom Chiverton

RE: activedit and FireFox?

2006-05-26 Thread Dave Watts
Um Dumb question but why not just use IE for this task? Maybe he doesn't have IE (sensible chap). Snobbery 1, common sense 0. If the original poster is a web developer, he should certainly have a copy of the same web browser that the vast majority of his users will have! Dave Watts,

RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
Dave, I don't have the time right now to read the link you provided, but surely I will later. I know on windows I can use ActiveX (I think - it automatically downloads a plug-in for the control) without any trouble. ... Ben Nadel www.bennadel.com -Original Message-

Re: QuickBooks Web Connector Products

2006-05-26 Thread John C. Bland II
Bud, good work! On 5/26/06, Bud [EMAIL PROTECTED] wrote: Hi everyone. I have 2 new programs to announce, 1 commercial, and another freebie for the CF community. I generally do not tout my wares here, but the freebie is hopefully going to be of great help to some of you. So I'm including my

RE: activedit and FireFox?

2006-05-26 Thread Dave Watts
But isn't flash ActiveX? There is an ActiveX control for Flash in IE, and a Mozilla plugin for Flash for Mozilla-based browsers. The plugin architectures are different between the two. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber

RE: activedit and FireFox?

2006-05-26 Thread Jochem van Dieten
Dave Watts wrote: Maybe he doesn't have IE (sensible chap). Snobbery 1, common sense 0. If the original poster is a web developer, he should certainly have a copy of the same web browser that the vast majority of his users will have! Which is not always IE. For instance, I am

Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 16:00, Ben Nadel wrote: stuff. But isn't flash ActiveX? It might be on windows platforms. On other O/S it'll be some other form of browser plugin. -- Tom Chiverton This email is sent for and on behalf of Halliwells

Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 15:35, Robertson-Ravo, Neil (RX) wrote: Uurgh, sick of the whole I hate IE shebanglet it lie ;-) I am using IE7 now and I must sayI am liking it. Even though the menu bar is now three times the height ? -- Tom Chiverton

RE: activedit and FireFox?

2006-05-26 Thread Mark A Kruger
Jochem, Congrats - you found the only BSD only intranet in the entire world to work for... I bet there is a pocket protector and twinky verndor in the lobby too :) -Mark -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 10:19 AM To:

Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 16:02, Dave Watts wrote: Snobbery 1, common sense 0. It *is* Friday :-) -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England

RE: activedit and FireFox?

2006-05-26 Thread Dave Watts
Maybe he doesn't have IE (sensible chap). Snobbery 1, common sense 0. If the original poster is a web developer, he should certainly have a copy of the same web browser that the vast majority of his users will have! Which is not always IE. For instance, I am currently

displaying in week format

2006-05-26 Thread Bruce Sorge
I posted this earlier but did nto see it show up on the list. If it double posts I apoligize: Hello list. I have a query that is getting a total of records for a previous week and I am displaying the total number of records. Now, the customer wants me to output it into a one week format with a

Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 16:35, Dave Watts wrote: Tom's statement that it would generally be sensible for a web developer not to have access to IE on Windows? Woa there :-) I actually *do* work on an IE-heavy intranet most of my time :-) When I'm doing HTML-based sites, it's much more present to

Re: activedit and FireFox?

2006-05-26 Thread Crow T. Robot
Well, I can. Or, should I say I could. For some reason, I can't log in to the CMS using IE anymore. But I can with FF. Weird problem, I know, but I've checked all my IE settings and there's nothing there that I can see might be causing the problem. Mark A Kruger wrote: Um Dumb

Re: displaying in week format

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 16:36, Bruce Sorge wrote: cfquery datasource=#application.datasource# name=getAddMoreCashLead SELECT COUNT(LeadDistributionID) AS totalLeadRec FROMLeadDistribution WHERE (HttpReferer IS NOT NULL AND HttpReferer IN

Re: activedit and FireFox?

2006-05-26 Thread Crow T. Robot
Hrm...installed that, thought it was going to work, but, no-go. I guess whoever posted that Activedit is an IE-only tool was right. I just thought that it might work with the right plug-in. Dave Watts wrote: Firefox on Windows can use ActiveX controls, iirc, with all their attendant

RE: displaying in week format

2006-05-26 Thread Bruce Sorge
Yeah, I guess that is it. However when I run this one I get the message that trucn is not a recognized function name. I am using SQL Server. And you want total counts by day ? Something like this: SELECT COUNT(LeadDistributionID) AS totalLeadRec,trunc(DateInserted)

Re: displaying in week format

2006-05-26 Thread Bruce Sorge
I removed the trunc part and the query ran fine. So now how do I get it to format the way I need it to? Loop through the query results? ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241592 Archives:

BUMP Re: Adobe partnerships?

2006-05-26 Thread Bryan Stevenson
Anybody? Bueller? ;-) 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: [EMAIL PROTECTED] web: www.electricedgesystems.com - Original Message - From: Bryan Stevenson [EMAIL

RE: activedit and FireFox?

2006-05-26 Thread Dan G. Switzer, II
From: Mark A Kruger [mailto:[EMAIL PROTECTED] Um Dumb question but why not just use IE for this task? One reason I've looked at this tool in the past is that it creates pure XHTML. That's a huge plus in my book. The problem with both the built-in IE RTE control and the Gecko-based one is that

Re: activedit and FireFox?

2006-05-26 Thread Peter Tilbrook
You can use the localhost address (127.0.0.1) fine for testing otherwise yes you need a legit licence key. I am using the Java version under Firefox 1.5.0.3 with no dramas. Example AE code I am using: cf_activedit name=LibraryBody inc=#Request.ActiveEditIncludePath# width=100% height=500

SOLVED Re: Adobe partnerships?

2006-05-26 Thread Bryan Stevenson
Found it! 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: [EMAIL PROTECTED] web: www.electricedgesystems.com ~|

Re: activedit and FireFox?

2006-05-26 Thread Peter Tilbrook
Activedit is IE only. Is not! Is built on Java so requires the JVM is all. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241597 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

Re: SOLVED Re: Adobe partnerships?

2006-05-26 Thread Crow T. Robot
And? My boss is interested in this, too. Bryan Stevenson wrote: Found it! 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: [EMAIL PROTECTED] web: www.electricedgesystems.com

Re: QuickBooks Web Connector Products

2006-05-26 Thread Damien McKenna
That's really awesome, on both fronts - good work! -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://ww.thelimucompany.com/ - 407-804-1014 #include stdjoke.h ~| Message:

Re: activedit and FireFox?

2006-05-26 Thread Crow T. Robot
We do have a legit license key, too, as far as I know. I mean, it works in IE, so that should be the case, right? The only time I get that message is if I try to use it in FireFox. The end-user uses this thing all the time, but she uses IE, so she doesn't see this message. BTW, my IE

Re: activedit and FireFox?

2006-05-26 Thread Jochem van Dieten
Mark A Kruger wrote: Congrats - you found the only BSD only intranet in the entire world to work for... There are plenty of Mac-only intranets, and as soon as they complete migration to OS X they become BSD-only :) Jochem

RE: Captcha ??

2006-05-26 Thread Dennis Powers
Anyone has comments on Bobby Hartfield's CF_BHCAPTCHA? http://acoderslife.com/downloads/bhcaptcha/ I have been using it effectively on our CF5 based sites it was easy to setup and works well. See http://www.ctbusinesscards.com/about.cfm for an example of how it is being used. Best Regards,

Re: Any reason why a file field can be submitted back to the page it's on?

2006-05-26 Thread Jochem van Dieten
Rick Faircloth wrote: What he's throwing in is not logical, but illogical, from a common sense point of view. But we shouldn't be hypothesizing...that proves nothing. Are you suggesting we all go get traffic accidents so we have some facts instead of a hypothesis? :) Jochem

Finding matching values in a structure?

2006-05-26 Thread Andy Matthews
I've got a structure containing coordinates for a grid. I've named each line for the person who should appear at those coordinates. I've found a function called StructFindValue() that says it can do what I need, but everytime I try to use it, I get an error. According to the docs it Searches

Re: activedit and FireFox?

2006-05-26 Thread Jochem van Dieten
Dave Watts wrote: Maybe he doesn't have IE (sensible chap). Snobbery 1, common sense 0. If the original poster is a web developer, he should certainly have a copy of the same web browser that the vast majority of his users will have! Which is not always IE. For instance, I am currently

Clustering and CFMX 7

2006-05-26 Thread Robert Everland III
With CFMX 7 clustering, can you copy application and session variables between servers including sessions or applications that are cfcs? Bob ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241606 Archives:

RE: Any reason why a file field can be submitted back to the page it's on?

2006-05-26 Thread Rick Faircloth
Yes...if we're really going to come to a well-founded conclusion on the matter, then the facts will have to be studied...I just made a poor analogy to the original HTML security issue, along with a pet peeve comment and it started an entire debate, which is fruitless without facts. I should have

CFOpenChat Updates

2006-05-26 Thread Rick Root
I've found a bit of time to make the conversion from cfajax to ajaxCFC for my chat application. I'd love it if everyone came to check out the demo before I released the new beta 0.95 I've made some other modifications to it to make it easier to implement, and have made the idle watcher

Re: SOLVED Re: Adobe partnerships?

2006-05-26 Thread Bryan Stevenson
And? My boss is interested in this, too. Oh sureNOW somebody cares...hehe ;-) http://spectra15.macromedia.com/overview/na_requirements.cfm Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell:

Using CFXML to Make a Log File

2006-05-26 Thread Ben Dyer
This seems like a simple problem but I can't seem to find an adequate answer. I want to create a log file that I can use to monitor different events on a web site using CFXML to create RSS feeds. In other words, I want to create a log file and then when one of these events occurs, prepend it to

RE: activedit and FireFox?

2006-05-26 Thread Mark A Kruger
Ah... Ok scratch my snide comment and substitute pocket protectors and twinkies for ear buds and a latte (ha)... -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 11:30 AM To: CF-Talk Subject: Re: activedit and FireFox? Mark A Kruger wrote:

Re: Any reason why a file field can be submitted back to the page it's on?

2006-05-26 Thread Crow T. Robot
That nuthin', you should join cf-comm. :) Rick Faircloth wrote: Yes...if we're really going to come to a well-founded conclusion on the matter, then the facts will have to be studied...I just made a poor analogy to the original HTML security issue, along with a pet peeve comment and it

RE: Using CFXML to Make a Log File

2006-05-26 Thread Ian Skinner
Does anybody have any suggestions? I hope I'm explaining myself well enough. Thanks in advance for any help. --Ben To do what you want, you are going to have to load the file process the data in memory then re-write the file. If you can look at your file as a list, with some kind of

RE: Data modelling tool

2006-05-26 Thread Dawson, Michael
I use Embarcadero's ER/Studio. Pricey, but well worth it. MS Visio does a decent job, I hear. M!ke -Original Message- From: Jason Rogoz [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 9:42 AM To: CF-Talk Subject: Data modelling tool Just wanted to find out what data modelling

Re: Using CFXML to Make a Log File

2006-05-26 Thread Josh Nathanson
You could probably use XmlChildPos and ArrayDeleteAt/ArrayInsertAt in some combination - check the docs for specific usage. -- Josh - Original Message - From: Ben Dyer [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, May 26, 2006 10:35 AM Subject: Using CFXML to

RE: Any reason why a file field can be submitted back to the page it's on?

2006-05-26 Thread Rick Faircloth
I'd love to, but I'm afraid I'd get nothing done because I'd want to join in too much! :o) Rick -Original Message- From: Crow T. Robot [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 1:38 PM To: CF-Talk Subject: Re: Any reason why a file field can be submitted back to the page

RE: Finding matching values in a structure?

2006-05-26 Thread Nick Han
StructFindValue(us,62|-213) returns an array of match instances, so you cannot evaluate it in an if statement like that. Instead, first check for StructFindValue returned value is an array and loop through it if you had than nested structures. cfset us = StructNew() cfset us[andy] = 62|-213

Re: CFOpenChat Updates

2006-05-26 Thread Nick Tong - TalkWebSolutions.co.uk
Hi Rick, I'm getting an initialized failed error. FF 1.5.03 Win xp :( I suspect though that it's because i'm connecting via 3g and the data transfer rate it cr*p! On 26/05/06, Rick Root [EMAIL PROTECTED] wrote: I've found a bit of time to make the conversion from cfajax to ajaxCFC for my

What versions of Oracle does 6.1 support?

2006-05-26 Thread Stacy Young
Hard to decipher off the Adobe site. With latest patches does it support beyond 10g? -- WARNING --- This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient. No privilege or

RE: What versions of Oracle does 6.1 support?

2006-05-26 Thread Dave Watts
Hard to decipher off the Adobe site. With latest patches does it support beyond 10g? The DataDirect drivers available as a CF 7 hot fix on the Adobe site can be applied to CFMX 6.1 as well as 7.x. They support up to 10g R2. http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=42dcb10a

RE: Clustering and CFMX 7

2006-05-26 Thread Dave Watts
With CFMX 7 clustering, can you copy application and session variables between servers including sessions or applications that are cfcs? No, you can't synchronize session variables that contain CFC instances. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software

Passing a query string as a single url variable

2006-05-26 Thread Christophe Maso
Trying to pass a custom query string to a template through the URL, example (assume all inside cfoutput tags): cfset qrystr=name=Janeeyes=brownhair=blondnumber=2125551234 Here is the qrystr encoded: #URLEncodedFormat(qrystr)#br a

RE: Passing a query string as a single url variable

2006-05-26 Thread Ian Skinner
So, the receiving template is going to see qrystr only as name=Jane, and not the full string. How can I pass qrystr in the URL so that it remains encoded and will be received with it's complete value? I don't think this is true. I think the status is just decoding the url for the status

RE: Passing a query string as a single url variable

2006-05-26 Thread WebMistress
Funny but when I mouse over it has it encoded. Here's the source of my output page. Here is the qrystr encoded: name%3DJane%26eyes%3Dbrown%26hair%3Dblond%26number%3D2125551234br a href=http://www.hfdkldf.com/main.cfm?action=saveinfoqrystr=name%3DJane%26eyes%

Re: Passing a query string as a single url variable

2006-05-26 Thread Ken Ferguson
It seems to be working as you'd expect. The following code yields the following results: cfif isDefined(url.action)cfdump var=#url#/cfif cfoutput cfset qrystr=name=Janeeyes=brownhair=blondnumber=2125551234 Here is the qrystr encoded: #URLEncodedFormat(qrystr)#br a

That netflix sort thing, from your Queue

2006-05-26 Thread Jeff Small
Does anyone here netflix? If you do, take a look at your queue. Let's say for instance, you have ten items in your queue, and over on the far left, there's a text field that contains your sort order for your queue. You might want to move 7 up to number 3. Now when you do that... How does it

Re: CFOpenChat Updates

2006-05-26 Thread Rick Root
Okay, I fixed some bugs and such .. thanks for everyone who came in and helped me out 0.95b is now available for download from CFOpen http://cfopen.org/frs/?group_id=88 rick ~| Message:

trigger a remote form - RE: Passing a query string as a single url variable -

2006-05-26 Thread Steve Kahn
This is SOT but, I need to trigger a form on a different host by calling the response page using the full url i.e http://www.domain.com/subscribeResponse1.cfm?email=emailaddresslistid=1 Is there a way to do this behind the scenes without the user taking direct action or attach it in another

RE: That netflix sort thing, from your Queue

2006-05-26 Thread Adkins, Randy
There is a JS script for it. Look for Sort boxes or something like that. Sorry do not recall the actual place but maybe on MattKruse.com or something like that. -Original Message- From: Jeff Small [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 3:19 PM To: CF-Talk Subject: That

OT: Flash beeper

2006-05-26 Thread Rick Root
Anyone know how I cold be a little tiny flash movie that I could control via external javascript? Essentially, I want a flash movie that beeps on command. How would I do that? rick ~| Message:

Re: That netflix sort thing, from your Queue

2006-05-26 Thread Dante Orlando
On 5/26/06, Jeff Small [EMAIL PROTECTED] wrote: How does it know how to fix the rest of the orders? Now here's an even better part...you can sort all OVER the list. You can make number 3 into number 7, and number 7 into number 8, then make 2 into 10then click sort and they're all correct.

RE: Flash beeper

2006-05-26 Thread Ben Forta
You want to be able to trigger Flash events from JavaScript? That's exactly what the FABridge does. See http://labs.adobe.com/wiki/index.php/Flex_Framework:FABridge. --- Ben -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 3:34 PM To: CF-Talk

Re: That netflix sort thing, from your Queue

2006-05-26 Thread Matt Williams
Most likely they are using javascript and you should be able to find their specific javascript. Long Live View Source! ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241633 Archives:

Re: That netflix sort thing, from your Queue

2006-05-26 Thread Jeff Small
I may be wrong, but shouldn't it just be a matter of sorting an unordered list of numbers (i.e. positions in your queue), using bubble sort or some other such algorithm. Nah, it seems more complex than that. I don't know, maybe it isn't, but I still don't see how you rectify the list before

Re: Using CFXML to Make a Log File

2006-05-26 Thread Ben Dyer
OK, I've spent a lot of time looking at the documentation and it's pretty much worthless to me. Doesn't explain a thing. The CFXML is creating a standard RSS file that you'd find on any blog. I want to insert a new item and *ALL* of its child elements above any and all current item tags. The

Re: Using CFXML to Make a Log File

2006-05-26 Thread Ben Dyer
OK, I've spent a lot of time looking at the documentation and it's pretty much worthless to me. Doesn't explain a thing. The CFXML is creating a standard RSS file that you'd find on any blog. I want to insert a new item and *ALL* of its child elements above any and all current item tags.

RE: trigger a remote form - RE: Passing a query string as a single url variable -

2006-05-26 Thread Ian Skinner
Is there a way to do this behind the scenes without the user taking direct action or attach it in another manner? Not sure what you are trying to do, but a cflocation might be what you want. cflocation url=http://www.google.com/search?q=Madonna; -- Ian Skinner Web Programmer

RE: how to trigger a form remotely

2006-05-26 Thread Kevin Aebig
Why not just re-create the form and post it yourself? !k -Original Message- From: Steve Kahn [mailto:[EMAIL PROTECTED] Sent: May 26, 2006 2:36 PM To: CF-Talk Subject: how to trigger a form remotely I need to trigger a form on a different host by calling the response page using the full

RE: how to trigger a form remotely

2006-05-26 Thread Steve Kahn
I need to pass an form.email to an action page from site one to site two. I want to grab the email from site-A's login and pass it site-B's response page that will check it for duplicates and enter into db. I am trying to trigger a form on a different host by calling the response page using the

RE: how to trigger a form remotely

2006-05-26 Thread Steve Kahn
I need to pass an form.email to an action page from site one to site two. I want to grab the email from site-A's login and pass it site-B's response page that will check it for duplicates and enter into db. I am trying to trigger a form on a different host by calling the response page using the

RE: how to trigger a form remotely

2006-05-26 Thread Ian Skinner
I am trying to trigger a form on a different host by calling the response page using the full url i.e http://www.domain.com/subscribeResponse1.cfm?email=emailaddresslistid=1 You create a form or equivalent in your site A, but in the form's action parameter you provide the URL to site B's

  1   2   >