Re: Bluedragon Server

2004-11-05 Thread Calvin Ward
I'm not concerned about implementation details as a developer, I'm concerned about API and funcctionality. In this example, I believe the actcual CFMX cfsearch/cfcollection supports the search of pdfs and word documents, and the usage of additional languages other than english, ,whereas it

Re: Date Picker for CF?

2004-11-05 Thread Calvin Ward
I would consider this one: http://www.dynarch.com/projects/calendar/ Very nicely done popup calendar, but be sure to donate if you use it! Implementing it is very straight forward and so would be wrapping a custom tag around it. Enjoy, Calvin Jordan Michaels wrote: haha. yeah I know the

Re: Date Picker for CF?

2004-11-05 Thread Massimo, Tiziana e Federica
I would consider this one: http://www.dynarch.com/projects/calendar/ Very nicely done popup calendar, but be sure to donate if you use it! Implementing it is very straight forward and so would be wrapping a custom tag around it. Wrapping a custom tag around it is exactely what I did (see my

Regular Expression Help

2004-11-05 Thread Daniel Farmer
I'm searching a long string and looking for the value input type=hidden name=BV_SessionID value=any value here what kind of syntax would I use to grab the value of the above tag. ~| Special thanks to the CF Community Suite Gold

RE: Regular Expression Help

2004-11-05 Thread Pascal Peters
REReplaceNoCase(text,'^.*input type=hidden name=BV_SessionID value=([^]*).*$',\1) Pascal -Original Message- From: Daniel Farmer [mailto:[EMAIL PROTECTED] Sent: 05 November 2004 10:24 To: CF-Talk Subject: Regular Expression Help I'm searching a long string and looking for the

Re: Regular Expression Help

2004-11-05 Thread Daniel Farmer
Thanks Pascal... but I am having problems implementing cfset theval = #REFind('^.*input type=hidden name=BV_SessionID value=([^]*).*$',\1,)#, cfhttp.filecontent, startpos )# ~| Special thanks to the CF Community Suite Gold

Re: CFFile Issue

2004-11-05 Thread Thomas Chiverton
On Thursday 04 Nov 2004 16:27 pm, Mosh Teitelbaum wrote: I've never run across that problem but it may well be as you suggest... some sort of locking error. Solution, cflock it exclusivly and see what happens. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44 (0)1749 834900 email:

RE: Regular Expression Help

2004-11-05 Thread Gavin Brook
Pascal, Would it be possible for you to explain a bit more about what each part of the RegEx is doing? I'm trying to do something similar and I'm having no end of trouble getting the RegEx right. MM documentation is pretty thin on more advanced matching. Thanks, Gavin -Original

RE: Regular Expression Help

2004-11-05 Thread Pascal Peters
cfset theval = REReplaceNoCase(cfhttp.filecontent,'^.*input type=hidden name=BV_SessionID value=([^]*).*$',\1) Pascal -Original Message- From: Daniel Farmer [mailto:[EMAIL PROTECTED] Sent: 05 November 2004 11:10 To: CF-Talk Subject: Re: Regular Expression Help Thanks Pascal...

RE: Regular Expression Help

2004-11-05 Thread Pascal Peters
^ beginning of string .* any character, any number of times ... literal string ([^]*) any character except , any number of times (grouped for backreferencing) .* see above $ end of string The \1 matches the first group saved for backreferencing. I forgot the quotes in my original post. If you

Re: odbc server timeout?

2004-11-05 Thread Jochem van Dieten
Critter wrote: anyone have any suggestions as .. how to handle this? Don't use ODBC. Seriously, why would you want to? Jochem ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net

Re: Bluedragon Server

2004-11-05 Thread Jeffry Houser
At 04:01 AM 11/5/2004, you wrote: Subject: Bluedragon Server From: Calvin Ward [EMAIL PROTECTED] Date: Fri, 05 Nov 2004 02:46:38 -0600 Thread: http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid=36359forumid=4#183454 I'm not concerned about implementation details as a

404 Error handler for ColdFusion?

2004-11-05 Thread Mike Kear
I'm tidying up my understanding of error handling and realising how casual I've been up till now. not really worrying if a user gets a standard error message. There are much more graceful ways to tell them what idiots they've been. In particular, I'm right now getting to grips with page not

Re: CFMAIL and Bulk Email Strategies

2004-11-05 Thread Jochem van Dieten
Matt Robertson wrote: #2. Choice #1 is like a matador waving a red cape in front of an arena full of bulls, where your mail server is the matador and the bulls are all of the other mail servers you are sending to. Less colorfully: Dumping everyone into a bcc or cc field is the sign of a

Re: 404 Error handler for ColdFusion?

2004-11-05 Thread Thomas Chiverton
Set the handler in the administrator. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44 (0)1749 834900 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey Hole Road, WELLS. BA5 1AF Tel: +44 (0)1749 834900 Fax: +44 (0)1749 834XXX web: www.bluefinger.com Company Reg

Re: odbc server timeout?

2004-11-05 Thread Critter
that was me using the cfadmin and choosing the Access option... suggestions? On Fri, 05 Nov 2004 13:41:49 +0100, Jochem van Dieten [EMAIL PROTECTED] wrote: Critter wrote: anyone have any suggestions as .. how to handle this? Don't use ODBC. Seriously, why would you want to? Jochem

Re: [Fwd: [CF-Dev] MX Europe 2005 Registration Open - Get your Early Bird tickets now!]

2004-11-05 Thread Thomas Chiverton
On Thursday 04 Nov 2004 19:08 pm, Stephen Moretti (cfmaster) wrote: http://www.mxeurope.org/go/registration Host does not resolve. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44 (0)1749 834900 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey Hole Road,

BlueDragon (issue|question)

2004-11-05 Thread Critter
I have a site that runs fine on cfmx, I attempted to move it over to BD. One of my includes includes/common/_header.cfm has this line: script language=JavaScript src=spiffy/spiffyCal_v2_1.js type=text/javascript/script if i comment that line out... the site comes up fine in BD... with that

Re: 404 Error handler for ColdFusion?

2004-11-05 Thread Mike Kear
Thanks Thomas. I should also have added that we're in a shared host environment, and I have 4 sites on this same server that I want to use custom error templates on. I dont want to have one site getting the 'page not found' for another site. There's no way for a coldfusion template missing

Re: 404 Error handler for ColdFusion?

2004-11-05 Thread John Beynon
if you want IIS to handle them then open up the application mappings in the IIS admin and look at the .cfm file, check the file exists box, jb. On Fri, 5 Nov 2004 13:42:20 +, Thomas Chiverton [EMAIL PROTECTED] wrote: Set the handler in the administrator. -- Tom Chiverton Advanced

Page stops processing

2004-11-05 Thread Bud
Hi all. I've got a problem on a site I'm helping with. The cfm pages simply abort processing for no apparent reason. There is no ColdFusion error given and it aborts in random places of any given page. It's like someone simply highlights the last portion of the page and hits delete. The page

Re: odbc server timeout?

2004-11-05 Thread Jochem van Dieten
Critter wrote: that was me using the cfadmin and choosing the Access option... suggestions? Unicode Access does not use ODBC. It is much faster with large recordsets too, and you get unicode support. Jochem ~| Special

Re: output listing problem

2004-11-05 Thread Deanna Schneider
You just need to alter your order by: order by itemid, date asc The asc on the date won't affect the itemid order at all. - Original Message - From: DRE [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 04, 2004 2:56 PM Subject: Re: output listing problem

RE: BlueDragon (issue|question)

2004-11-05 Thread Vince Bonfanti
I assume you're running BD 6.1? If so, apply the latest hotfix: ftp://ftp.newatlanta.com/public/bluedragon/6_1/hotfix/Sept_2004 This is fixed in the BD 6.2 beta, and we're also planning an update to the web site soon to put hotfixes on the downloads page. Vince Bonfanti New Atlanta

RE: BlueDragon (issue|question)

2004-11-05 Thread dave
u need to have your host enable it for u just went through that -- Original Message -- From: Vince Bonfanti [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Fri, 5 Nov 2004 09:04:05 -0500 I assume you're running BD 6.1? If so, apply the latest hotfix:

Re: 404 Error handler for ColdFusion?

2004-11-05 Thread Mike Kear
Thanks for your suggestion John. There's no way to do it in my own sites? i have to get the system guys in the hosting company to do it? The control panel we use turns on custom 404s (and other IIs error messages) but doesnt do it for CFM. So I have to build something in coldfusion to handle

Re: Page stops processing

2004-11-05 Thread Jochem van Dieten
Bud wrote: Hi all. I've got a problem on a site I'm helping with. The cfm pages simply abort processing for no apparent reason. There is no ColdFusion error given and it aborts in random places of any given page. It's like someone simply highlights the last portion of the page and hits

Re: 404 Error handler for ColdFusion?

2004-11-05 Thread dave
u need to have your host enable it for u just went through that -- Original Message -- From: Mike Kear [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Sat, 6 Nov 2004 01:16:08 +1100 Thanks for your suggestion John. There's no way to do it in my own

Re: 404 Error handler for ColdFusion?

2004-11-05 Thread dave
appears we are having some race conditons here, thats 2x today it has posted under wrong post sorry was supposed to be under the 404 one -- Original Message -- From: Mike Kear [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Sat, 6 Nov 2004 01:16:08

Re: 404 Error handler for ColdFusion?

2004-11-05 Thread John Beynon
there's no way to do it on per site basis in a single instance of CF, - unless you are able to create a 'global' missing template handler in the cfadmin and have it redirect to the site that threw the error - but in a hosted environment it's tough to persuede them! On Sat, 6 Nov 2004 01:16:08

error page capturing request

2004-11-05 Thread Doug James
I have built a custom error page that successfully handles a couple of different errors through the Apache VirtualHost ErrorDocument directive. I would like to log the requested page. I can display the requested page to the user, javascript:window.location, once the error page displays but I

RE: CFFile Issue

2004-11-05 Thread Jeff Waris
Tom, The lock didn't work. Still gave me the append error. Mosh, Your way worked well doing smaller queries but when doing a real large query where the output file would be like 30+ megs it hung, what I may do is write the file out in smaller more manageable chunks... Jeff -Original

Re: [Fwd: [CF-Dev] MX Europe 2005 Registration Open - Get your Early Bird tickets now!]

2004-11-05 Thread Stephen Moretti (cfmaster)
Thomas Chiverton wrote: On Thursday 04 Nov 2004 19:08 pm, Stephen Moretti (cfmaster) wrote: http://www.mxeurope.org/go/registration Host does not resolve. Looks like you have a dns problem. The domain and site have been up for quite some time and I'm not aware of anyone else

RE: [Fwd: [CF-Dev] MX Europe 2005 Registration Open - Get your Ea rly Bird tickets now!]

2004-11-05 Thread James Holmes
Me too, just now, from NSLookup: www.mxeurope.org Server: dns.curtin.edu.au Address: 134.7.134.134 *** dns.curtin.edu.au can't find www.mxeurope.org: Non-existent domain ~| Special thanks to the CF Community Suite Gold

Dumb cfinclude quesstion and fusebox

2004-11-05 Thread Mark Drew
I want to add the functinality of another fuse into a page would I do cfinclude template=index.cfm?fuseaction=questions.question1 ? If not.. what is the other way to do it? -- Mark Drew coldfusion and cfeclipse blogged: http://cybersonic.blogspot.com/ 39° 31' 58 , 0° 25' 53 39.533 ,

Re: Dumb cfinclude quesstion and fusebox

2004-11-05 Thread John Beynon
no, you can't pass parameters with cfinclude. you would need to do a cfmodule call instead, cfmodule template=index.cfm fuseaction=questions.question1 john. On Fri, 5 Nov 2004 15:41:46 +0100, Mark Drew [EMAIL PROTECTED] wrote: I want to add the functinality of another fuse into a page would

Re: Dumb cfinclude quesstion and fusebox

2004-11-05 Thread John Beynon
or use a cfinclude template=../../pathtopage/pathtoinclude.cfm if you were using fusebox4 this problem doesn't exist anymore, you can call fuseactions in other circuits directly from any fuseaction. On Fri, 5 Nov 2004 14:45:56 +, John Beynon [EMAIL PROTECTED] wrote: no, you can't pass

Re: Dumb cfinclude quesstion and fusebox

2004-11-05 Thread Mark Drew
Thanks for that brain has gone into freeze mode ... MD On Fri, 5 Nov 2004 14:45:56 +, John Beynon [EMAIL PROTECTED] wrote: no, you can't pass parameters with cfinclude. you would need to do a cfmodule call instead, cfmodule template=index.cfm fuseaction=questions.question1 john.

Re: [Fwd: [CF-Dev] MX Europe 2005 Registration Open - Get your Early Bird tickets now!]

2004-11-05 Thread John Beynon
there does seem to be a problem - it worked yesterday but doesn't work today. I'll shoot the guys that look after it an email, jb. On Fri, 05 Nov 2004 14:32:52 +, Stephen Moretti (cfmaster) [EMAIL PROTECTED] wrote: Thomas Chiverton wrote: On Thursday 04 Nov 2004 19:08 pm, Stephen

Re: line breaks in cfmail

2004-11-05 Thread Anders Green
At 02:00 PM 11/4/2004, Matthew Smith wrote: Without using html(br), how do you get a line break in a cfmail? I thought just having the code set up with breaks would carry over to the mail? What I'm finding strange is that with one mailserver, it works exactly as you would think, plain text, no

Re: [Fwd: [CF-Dev] MX Europe 2005 Registration Open - Get your Early Bird tickets now!]

2004-11-05 Thread Jochem van Dieten
Stephen Moretti (cfmaster) wrote: Thomas Chiverton wrote: On Thursday 04 Nov 2004 19:08 pm, Stephen Moretti (cfmaster) wrote: http://www.mxeurope.org/go/registration Host does not resolve. Looks like you have a dns problem. The domain and site have been up for quite some time and I'm

Re: [Fwd: [CF-Dev] MX Europe 2005 Registration Open - Get your Early Bird tickets now!]

2004-11-05 Thread Stephen Moretti (cfmaster)
John Beynon wrote: there does seem to be a problem - it worked yesterday but doesn't work today. I'll shoot the guys that look after it an email, hmmm weird - I've been tidying some of the content up today and can still get to it, but yes there does seem to be a problem. checkdsn.net is

Re: line breaks in cfmail

2004-11-05 Thread Jochem van Dieten
Anders Green wrote: At 02:00 PM 11/4/2004, Matthew Smith wrote: Without using html(br), how do you get a line break in a cfmail? I thought just having the code set up with breaks would carry over to the mail? What I'm finding strange is that with one mailserver, it works exactly as you

Re: Page stops processing

2004-11-05 Thread Bud
Jochem, thanks. Great answer. It appears it's not CF. Had this once. CF didn't stop processing but the transfer to the client aborted. Put a cfhtmlhead in your OnRequestEnd.cfm and if it shows up in the header of the page it is not CF stopping, but a data transfer error. Jochem

Re: Dumb cfinclude quesstion and fusebox

2004-11-05 Thread Mark Drew
Ahh.. yes.. is there fusebox 4 for CF 5? On Fri, 5 Nov 2004 14:48:23 +, John Beynon [EMAIL PROTECTED] wrote: or use a cfinclude template=../../pathtopage/pathtoinclude.cfm if you were using fusebox4 this problem doesn't exist anymore, you can call fuseactions in other circuits directly

RE: Dumb cfinclude quesstion and fusebox

2004-11-05 Thread kola.oyedeji
There is but you need to use a number of custom tags To mimic the functionality of the xml functions in CFMX http://xml.fusebox.org/ HTH Kola -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: 05 November 2004 14:51 To: CF-Talk Subject: Re: Dumb cfinclude quesstion

Re: Mach II

2004-11-05 Thread Alexander Sherwood
At 04:56 PM 11/4/2004, you wrote: Mach-IV? Dan Yeah. It's twice as fast as Mach-II, and roughly 4 times as fast as FuseBox 4. FuseBox uses the FuseDocs standard, which slows it down a little. With Mach-IV, you get true MVC coding, together with smart caching that is done through nested

Re: 404 Error handler for ColdFusion?

2004-11-05 Thread Mike Kear
I've decided to have a go at getting the Sysadmins to change the IIS entry. They're not too keen on doing such things because they say it's just one more setting they have to remember when they set up a new server. One more thing that could get forgotten and go wrong. I understand their

Re: 404 Error handler for ColdFusion?

2004-11-05 Thread John Beynon
it's only a setting for your virtual site...no real biggie on their behalf, jb. On Sat, 6 Nov 2004 02:47:36 +1100, Mike Kear [EMAIL PROTECTED] wrote: I've decided to have a go at getting the Sysadmins to change the IIS entry. They're not too keen on doing such things because they say it's

Re: 404 Error handler for ColdFusion?

2004-11-05 Thread John Beynon
just to see what happens, I've emailed my host to see if they'd do it, john. On Fri, 5 Nov 2004 16:21:14 +, John Beynon [EMAIL PROTECTED] wrote: it's only a setting for your virtual site...no real biggie on their behalf, jb. On Sat, 6 Nov 2004 02:47:36 +1100, Mike Kear [EMAIL

Re: BlueDragon (issue|question)

2004-11-05 Thread Critter
yes sir. I am. Thanks I'll update it. On Fri, 5 Nov 2004 09:04:05 -0500, Vince Bonfanti [EMAIL PROTECTED] wrote: I assume you're running BD 6.1? If so, apply the latest hotfix: ftp://ftp.newatlanta.com/public/bluedragon/6_1/hotfix/Sept_2004 This is fixed in the BD 6.2 beta, and we're

Re: Mach II

2004-11-05 Thread Ulf Unger
Great idea On Thursday 04 November 2004 17:51, Kwang Suh wrote: If people really want it, I'm going to write a very long, detailed tutorial on using Mach-II sometime in December. I wasn't too satified with the amount and quality of documentation out there. I'm curious who is using

Scheduler running 1 hr early since daylight savings?

2004-11-05 Thread Scott Mulholland
Anyone else have this issue: This task is set to execute at 6:15 each morning but as shown by the log when the clocks went back the scheduler seems to have gone back an hour with it?? The time still shows 6:15 in the scheduler but it has been running at 5:15 all this week.

Adding Values in Browser

2004-11-05 Thread Mickael
Hello All, I need to create a form that is modelled after an excel spreadsheet with formulas. What the spread sheet does is calculate expenses using the values being entered in its fields. i.e. Rent = $500 Food = $250 Water = $150 etc.. Total = (the total of the above.) How do you do this

RE: Bluedragon Server

2004-11-05 Thread Al Everett
--- Gert Franz [EMAIL PROTECTED] wrote: Well generally you are right, but who allways writes variables.name or something like that. I do. No unscoped variables in my code. __ Do you Yahoo!? Check out the new Yahoo! Front Page. www.yahoo.com

Re: BlueDragon (issue|question)

2004-11-05 Thread Critter
I did the hotfix update... this line confuses me a tad: - edit the StartBlueDragon.bat file, changing the string BlueDragonServer.jar to BlueDragonServerJX.jar only reason i say it confuses me.. is... there is an instance of ServerJX.jar already in the classpath... along with

RE: cfqueryparam oddity

2004-11-05 Thread Burns, John D
Right, I understand that I originally agreed to an NDA for Beta 1, but at MAX, all attendees were given a copy of Beta 2 and told to try it out. Even during the sneak peaks of products no NDAs had to be signed or anything. I'm just wondering if Macromedia has now just thrown the NDAs out the

CF Exchange Calendar

2004-11-05 Thread Tony Pimm
Has anyone found a way to use ColdFusion to interface with a Microsoft Exchange server, and create events for Public Calendars or tasks? Tony ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net

StructFind vs. ListFind for speed

2004-11-05 Thread Chris Gottshall
Hi. I have the option to search a structure for a key or a list for the key name. Which one yeilds the better performance? Thanks. ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net

RE: CFLOGOUT

2004-11-05 Thread Burns, John D
That's actually a known issue with CFLOGIN and CFLOGOUT. It was discussed at MAX. The only way to make sure it works correctly is to remove the cookies manually after your CFLOGOUT tag. Using CFLOGIN with sessions also has a bug. I went to an entire session on CFLOGIN and the basic answer

RE: cfqueryparam oddity

2004-11-05 Thread Burns, John D
Answers my question :-) Thanks Tony. John From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Thu 11/4/2004 1:44 PM To: CF-Talk Subject: Re: cfqueryparam oddity and to answer the question about the nda even though the cd went out to all in their bag @ max,

Re: 404 Error handler for ColdFusion?

2004-11-05 Thread John Beynon
well, 20 minutes after emailing them they'd done it for me...any luck with your host? On Fri, 5 Nov 2004 16:27:06 +, John Beynon [EMAIL PROTECTED] wrote: just to see what happens, I've emailed my host to see if they'd do it, john. On Fri, 5 Nov 2004 16:21:14 +, John Beynon

RE: CFLOGOUT

2004-11-05 Thread Dave Watts
I'm using the cflogout tag but I don't think the session was logged out. I managed to delete the cookie but the user can still get into the protected area after logout. This is the code for logout i'm using... cflogout cfif IsDefined(cookie.ISTHISPERSONLOGGEDINORWHAT) EQ Yes cfcookie

Re: Mach II

2004-11-05 Thread Kwang Suh
That comes up with nothing. At 04:56 PM 11/4/2004, you wrote: Mach-IV? Dan Yeah. It's twice as fast as Mach-II, and roughly 4 times as fast as FuseBox 4. FuseBox uses the FuseDocs standard, which slows it down a little. With Mach-IV, you get true MVC coding, together with smart

write procedure help ...

2004-11-05 Thread Charles Heizer
Hello, I was wondering if there was a good way to write a stored procedure similar to creating a class in java in coldfusion. I have some code which I will need to reuse in many if statements and I want to pass in the variables and let the stored procedure to process it. It does not look like

len

2004-11-05 Thread Robert Orlini
I have this query: CFQUERY datasource=wilsoncart name=compare Select from data Where len(order#) = '5' order by order# /CFQUERY I get an error on the ( It works in SQL Query Analyzer though. What can I use to get the length of that string which is numeric? Thx Robert O.

RE: StructFind vs. ListFind for speed

2004-11-05 Thread Michael Dinowitz
Structure is faster. I have some tests I posted to the list a while back with the numbers. I'll have to find it again and add it to the faq. Hi. I have the option to search a structure for a key or a list for the key name. Which one yeilds the better performance? Thanks.

Re: len

2004-11-05 Thread Nathan Strutz
Couple things here. First off, you didn't say what your error is, but i know it's a parsing error. A single # by itself will throw off CF because it's looking for a #variable#. You can escape it by making it a double ##. Second, this shouldn't even happen. Having a special character in a

Re: len

2004-11-05 Thread Howie Hamlin
The pound sign in CF is reserved and you would need to escape it with another pound sign - if your column is called Order# then you should write Order## instead. HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The

Using the DRK

2004-11-05 Thread Barney Boisvert
In DRK 9, there's the Lite version of the Alagad image component. Very nice, but missing some functionality. I've created a subclass to add some of that functionality (a crop(x, y ,w, h) method being the big one). According the the EULA, I'm allowed to redistribute the component from the DRK

RE: len

2004-11-05 Thread Dave Watts
CFQUERY datasource=wilsoncart name=compare Select from data Where len(order#) = '5' order by order# /CFQUERY I get an error on the ( It works in SQL Query Analyzer though. What can I use to get the length of that string which is numeric? You're using an unescaped reserved character

RE: Mach II

2004-11-05 Thread Dave Watts
That comes up with nothing. That's because it's a joke. Mr. Sherwood has posted many variations on this joke in the past. I don't really get it myself, but that could be my own failing. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax: 202-797-5444

Re: line breaks in cfmail

2004-11-05 Thread Scott Stroz
If you are using Cf 6.1, you can use the 'wraptext' attribute of CFMAIL. On Thu, 4 Nov 2004 13:00:07 -0600, Matthew Smith [EMAIL PROTECTED] wrote: Without using html(br), how do you get a line break in a cfmail? I thought just having the code set up with breaks would carry over to the mail?

RE: len

2004-11-05 Thread Robert Orlini
Thanks all. -Original Message- From: Robert Orlini Sent: Friday, November 05, 2004 1:52 PM To: CF-Talk Subject: len I have this query: CFQUERY datasource=wilsoncart name=compare Select from data Where len(order#) = '5' order by order# /CFQUERY I get an error on the ( It works in SQL

Attn: Adam Cantrell (or any other CF Gurus)

2004-11-05 Thread John Stanley
Adam (and to any others concered). Sorry for the cross-post. In the cf-talk thread http://www.houseoffusion.com/lists.cfm/link=m:4:28773:144462 you were running into this issue when getting XML via flash. We are getting the same exact error when receiving XML from an outside source using .Net.

RE: Mach II

2004-11-05 Thread Alexander Sherwood
At 02:28 PM 11/5/2004, you wrote: That comes up with nothing. That's because it's a joke. Mr. Sherwood has posted many variations on this joke in the past. I don't really get it myself, but that could be my own failing. I'm sorry, I just can't help myself. I just find it interesting how a

RE: Attn: Adam Cantrell (or any other CF Gurus)

2004-11-05 Thread John Stanley
BTW, there are no apostrophes in our xml file, as was the case in Adam's original email. -Original Message- From: John Stanley Sent: Friday, November 05, 2004 3:05 PM To: CF-Talk Subject: Attn: Adam Cantrell (or any other CF Gurus) Adam (and to any others concered). Sorry for the

RE: Mach II

2004-11-05 Thread Tangorre, Michael
to a booming defense of the FuseDoc process. No more Fusbox vs. Mach-II baitingI promise. Alex What do you have against the FuseDoc process? ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net

Re: Mach II

2004-11-05 Thread Kwang Suh
Laurence J Peter once said that against logic there is no armor like ignorance. At 02:28 PM 11/5/2004, you wrote: That comes up with nothing. That's because it's a joke. Mr. Sherwood has posted many variations on this joke in the past. I don't really get it myself, but that could be my

CFEXECUTE A quandary

2004-11-05 Thread Ian Sheridan
Is it possible to execute a perl script with this? cfexecute name=perl arguments=perl mactoipsearch -s 255.255.255.0 00-aa-22-cc-44-ee variable=mactoip/cfexecute cfdump var=#mactoip# Ian -- -- Ian Sheridan http://www.savagevines.com --

Re: Using the DRK

2004-11-05 Thread Joe Rinehart
Barney, The author sits in the cube next to mine. I'm forwarding your message to him, but I'm not sure of any extra licensing with the DRK version. -joe On Fri, 5 Nov 2004 11:26:08 -0800, Barney Boisvert [EMAIL PROTECTED] wrote: In DRK 9, there's the Lite version of the Alagad image

SQL help needed fast

2004-11-05 Thread Eric Creese
Can some one please tell me why this does not work? If you pass the url.inch variable it works fine. If you pass the url.line variable it fails with the following error. code is below the error I need an answer quick please Syntax error or access violation: You have an error in your SQL syntax

RE: Mach II

2004-11-05 Thread Alexander Sherwood
At 03:28 PM 11/5/2004, you wrote: to a booming defense of the FuseDoc process. No more Fusbox vs. Mach-II baitingI promise. Alex What do you have against the FuseDoc process? Absolutely nothing. I've always been amazed at the lengthy threads that result from a defense or criticism of

RE: Mach II

2004-11-05 Thread Tangorre, Michael
From: Alexander Sherwood [mailto:[EMAIL PROTECTED] Absolutely nothing. I've always been amazed at the lengthy threads that result from a defense or criticism of parts of the different frameworks. I've seen threads where people swear by FuseDocs and others where FuseDocs are call a huge

RE: Mach II

2004-11-05 Thread Alexander Sherwood
At 03:43 PM 11/5/2004, you wrote: From: Alexander Sherwood [mailto:[EMAIL PROTECTED] Absolutely nothing. I've always been amazed at the lengthy threads that result from a defense or criticism of parts of the different frameworks. I've seen threads where people swear by FuseDocs and others

Any BlueDragon user help?

2004-11-05 Thread Steve Brownlee
I've installed BlueDragon on my JBoss server and finally got all the configurations right. I migrated my ColdFusion code over, so now I'm testing my application and getting CFML RunTime Errors in the most unlikely places. Here's some examples...

Re: SQL help needed fast

2004-11-05 Thread Qasim Rasheed
which db, what is the datatype of lines? On Fri, 5 Nov 2004 14:34:46 -0600, Eric Creese [EMAIL PROTECTED] wrote: Can some one please tell me why this does not work? If you pass the url.inch variable it works fine. If you pass the url.line variable it fails with the following error. code is

Re: Any BlueDragon user help?

2004-11-05 Thread Jordan Michaels
The samples didn't show up for me. You also might want to try giving the Blue Dragon Mailing List a shot. They're pretty helpful there. ;) Warm regards, Jordan Michaels Vivio Technologies Steve Brownlee wrote: I've installed BlueDragon on my JBoss server and finally got all the configurations

Re: line breaks in cfmail

2004-11-05 Thread Anders Green
At 02:37 PM 11/5/2004, you wrote: If you are using Cf 6.1, you can use the 'wraptext' attribute of CFMAIL. You don't understand, he/I are not trying to wrap the text. The behavior we are describing is the text that we have hand-wrapped being converted back to flowed. Anders

RE: Any BlueDragon user help?

2004-11-05 Thread Steve Brownlee
Hmm, they didn't get pasted in... Here they are *** Type Application Tag Context CFTRY: Line=4; Column=1 | +-- CFTRY: Line=48; Column=2 | +-- CFLOCK: Line=49; Column=3 | +-- CFIF: Line=50; Column=4 |

RE: SQL help needed fast

2004-11-05 Thread Eric Creese
lines is an int and this is MySQL Database. No issues with it in access or sql server also in an order by clause in MySQl how many columns can be sorted at one time? -Original Message- From: Qasim Rasheed [mailto:[EMAIL PROTECTED] Sent: Friday, November 05, 2004 2:49 PM To: CF-Talk

RE: Any BlueDragon user help?

2004-11-05 Thread Vince Bonfanti
Steve, The error page didn't come through... For this sort of detailed help with BlueDragon, I'd recommend subscribing to the BlueDragon-Interest mailing list and posting your message there: http://www.newatlanta.com/products/bluedragon/self_help/archive_search/index .cfm Vince Bonfanti New

Re: StructFind vs. ListFind for speed

2004-11-05 Thread Matthew Drayer
You're comparing apples to oranges. The structFind() function returns the value of a structure key, whereas listFind() returns the index position of the matched value in a list. In order to properly compare the two functions, you would need to do a structKeyList(), then listFind(), followed

Re: Using the DRK

2004-11-05 Thread Doug Hughes
Barney, I'm pretty sure you could distribute that subclass. I suspect that there would be issues with distributing the Image component. As the author of the Image Component, how about I just add the method into the component and we call it done? Doug On Fri, 5 Nov 2004 11:26:08 -0800,

RE: Any BlueDragon user help?

2004-11-05 Thread Vince Bonfanti
The error page gets written to an HTML file within the WEB-INF/bluedragon/work/temp/rtelogs directory. The file name will be something like bderror1234.html. Can you email the error file directly to me ([EMAIL PROTECTED])? I'll have someone take a look at it and get back to you. Vince Bonfanti

[SOT] DOS-like web application

2004-11-05 Thread Marco Antonio C. Santos
Hi all I'm looking for examples about how to develop web applications when users will use only(first choice) keyboard like old Clipper/DOS applications. What's the pro's? And con's? Thanks Marco ~| Special thanks to the CF

Re: Using the DRK

2004-11-05 Thread Barney Boisvert
Crop is one of the methods removed for the Lite version. ; ) It's all of a single line, but I figured there was a reason. There's a few other things in there as well (like some new scale methods and an simpler writeImage method). I wasn't really looking for a good way to distribute it, it's

http://www.udflib.org/

2004-11-05 Thread Brook Davies
Is http://www.udflib.org/ gone? Or am I using the wrong url? Brook ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message:

RE: http://www.udflib.org/

2004-11-05 Thread Michael T. Tangorre
www.cflib.org Mike -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED] Sent: Friday, November 05, 2004 12:01 PM To: CF-Talk Subject: http://www.udflib.org/ Is http://www.udflib.org/ gone? Or am I using the wrong url? Brook

Re: http://www.udflib.org/

2004-11-05 Thread Charlie Griefer
www.cflib.org On Fri, 05 Nov 2004 09:00:51 -0800, Brook Davies [EMAIL PROTECTED] wrote: Is http://www.udflib.org/ gone? Or am I using the wrong url? Brook ~| Special thanks to the CF Community Suite Gold Sponsor -

  1   2   >