Re: Online Form Creation?

2007-09-09 Thread Chris Montgomery
Terry said the following on 9/8/2007 9:34 AM: Has anyone seen a CF open source way to allow your clients to roll their own forms for their site? I haven't had any luck finding an example. Terry, Would something like this work? http://fbx_formbuilder.riaforge.org/ -- Best regards, Chris

Re: database table watcher gateway and task queue

2007-09-09 Thread Anthony Webb
Seems like this would work, I must say I've seen uglier hacks in my day... Any other ideas out there? FYI I am running mySQL 5. Thanks for the tips! ~| Download the latest ColdFusion 8 utilities including Report Builder,

RE: Online Form Creation?

2007-09-09 Thread Terry
Thanks Chris, That is exactly what I am looking for. Terry Troxel -Original Message- From: Chris Montgomery [mailto:[EMAIL PROTECTED] Sent: Sunday, September 09, 2007 7:26 AM To: CF-Talk Subject: Re: Online Form Creation? Terry said the following on 9/8/2007 9:34 AM: Has anyone seen

CFTHREAD - naming threads when you dont care (too much) about the name

2007-09-09 Thread Paul Vernon
At the moment, I'm playing around with CFTHREAD to launch events in our framework to increase speed etc as opposed to running on CF6 and 7. The performance benefits are great when the event code takes a long time to run, but when the event code is relatively small, I'm seeing a bottleneck in

Solved: CFTHREAD - naming threads when you dont care (too much) about the name

2007-09-09 Thread Paul Vernon
I just found this... http://www.firemoss.com/blog/index.cfm?mode=entryentry=BC614E9B-3048-55C9-4 32594FC1E443986 Paul ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the

Re: Solved: CFTHREAD - naming threads when you dont care (too much) about the name

2007-09-09 Thread Raymond Camden
You could also use a request counter. On 9/9/07, Paul Vernon [EMAIL PROTECTED] wrote: I just found this... http://www.firemoss.com/blog/index.cfm?mode=entryentry=BC614E9B-3048-55C9-4 32594FC1E443986 Paul ~|

RE: Solved: CFTHREAD - naming threads when you dont care (too much) about the name

2007-09-09 Thread Paul Vernon
This is why I love this list! There's always more than one way to skin a cat! Your suggestion just hadn't occurred to me at all and given the restrictions of the naming of cfthread it would work perfectly for what I need and be as quick as naming from a loop index value. The faster UUID

Re: Solved: CFTHREAD - naming threads when you dont care (too much) about the name

2007-09-09 Thread Raymond Camden
If you want to see a real world example of this, check out Paragator (paragator.riaforge.org). It is my RSS Aggregator CFC written for CF8. It also 'helps' make CFFEED a bit more friendlier by collapsing columns from Atom and RSS into common columns so you don't have to check the metadata. (End of

Re: flash form in cf8

2007-09-09 Thread James Holmes
The scriptSrc attribute takes a folder, not a file: Specifies the URL, relative to the web root, of the directory that contains ColdFusion JavaScript files, including the cfform.js file with the client-side JavaScript used by this tag and its child tags. http://cfquickdocs.com/cf8/#cfform

Get ColdFusion 8 Standard Free!

2007-09-09 Thread Dale Fraser
SPECIAL ANNOUNCMENT! Contributing to learncf.com is now rewarding, not only do you get to assist the community with your tutorials, you now can be rewarded for your efforts. Every tutorial published before 31st December 2007 will get one ticket in a prize draw. 1st Prize - ColdFusion 8 Standard

Odd behavior when using cfform inside a CFC

2007-09-09 Thread Charles Sheehan-Miles
Hi all, Here's my situation, and its a bit odd. I've reproduced it under a couple of different contexts. I have a number of CFC methods which handle page processing for my application. It typically looks something like this: cffunction name=blah cfargument blah cfset var=result

RE: Odd behavior when using cfform inside a CFC

2007-09-09 Thread Andrew Scott
What version of Coldfusion? Personally I would be looking at an MVC solution and not be placing Form output into CFC's Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613  8676 4223 Mobile: 0404 998 273 -Original Message- From: Charles

Re: Odd behavior when using cfform inside a CFC

2007-09-09 Thread Charles Sheehan-Miles
It's CF8. On Sep 9, 2007, at 10:19 PM, Andrew Scott wrote: What version of Coldfusion? Personally I would be looking at an MVC solution and not be placing Form output into CFC's Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223

RE: Odd behavior when using cfform inside a CFC

2007-09-09 Thread Andrew Scott
I still would be looking at an MVC solution. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613  8676 4223 Mobile: 0404 998 273 -Original Message- From: Charles Sheehan-Miles [mailto:[EMAIL PROTECTED] Sent: Monday, 10 September 2007 12:32 PM To:

RE: Light-duty CF intranet server?

2007-09-09 Thread Dave Francis
I'm writing a very light intranet app myself using BD (and MySQL). Don't think I'm missing anything, but there's a table of differences from CF somewhere on the New Atlanta site (or maybe in the download docs) -Original Message- From: Billy Cox [mailto:[EMAIL PROTECTED] Sent: Friday,

Re: Light-duty CF intranet server?

2007-09-09 Thread Wil Genovese
look for this PDF from New Atlanta. BlueDragon_70_CFML_Compatibility_Guide.pdf Wil Genovese One man with courage makes a majority. -Andrew Jackson A fine is a tax for doing wrong. A tax is a fine for doing well. Dave Francis wrote: I'm writing a very light intranet app myself using BD

RE: Odd behavior when using cfform inside a CFC

2007-09-09 Thread Jaime Metcher
Charles, Nothing obvious, but a couple of questions come to mind: 1. Is it just the javascript that's missing i.e. the other content is OK? 2. Is the CFC instance cached e.g. in session or application scope? Also, I know that was only pseudocode, but given that var is a reserved word it looks a

RE: Odd behavior when using cfform inside a CFC

2007-09-09 Thread Andrew Scott
That is correct, CFC's are really used for business logic. Not that they can't be used for output, just that it makes for ugly coding in my opinion. Keep things simple and in their place, and it will make for easier debugging and maintenance further down the track. Andrew Scott Senior