RE: Use a list in where clause?

2003-02-14 Thread Tony Gruen
Thank you Pascal and Justin. Just did a dance around my chair and I can finally get a little sleep. Your generous help is truly appreciated. T ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

Developer Edition IP address

2003-02-14 Thread Mike Alberts
No offense Christian, but IMHO this isn't a valid argument. People either comply with the EULA or they don't. If they don't then we all know that it's easy enough to get hacks and cracks for most any commercial software product out there. If you are going to run a copy of CF on an intranet and

RE: Linux CF Editor

2003-02-14 Thread Hugo Ahlenius
Are you new to the list? I have been preaching vim here before (mostly without much response though) :) For tag completion: I just grabbed the list of functions and tags from the docs and put in a dictionary file, which can be used for completion using setlocal

Re: CFMX on Solaris vs. Windows

2003-02-14 Thread Steini Jonsson
We are now on Apache 2.0.43. Unfortunately no real improovment. Example: Loading a simple form containing some variables: Windows: 70 ms Solaris:350ms (average) With the stresstest it was a lot worse. 500 ms / 5-7s (25 concurrent users) - Original Message

CF - PHP comparisons?

2003-02-14 Thread Mike Alberts
Since I develop with both CF and php, I guess I'll add my .02... Also respectfully to you Dave, this is NOT a terrible comparison. With the exception of the part about user defined functions, the comparison seems pretty valid to me, even though it is quite old. In addition, php has made great

RE: Internationalization Theme

2003-02-14 Thread Kola Oyedeji
Adam I am interested in what functionality SQL server 2000 provides which makes internationalization of applications easier. Do you have any pointers to Any resources articles? Thanks Kola -Original Message- From: Adam Churvis [mailto:[EMAIL PROTECTED]] Sent: 13 February 2003 19:34

Re: Use a list in where clause?

2003-02-14 Thread Jochem van Dieten
Tony Gruen wrote: SELECT Subscribers.SubscriberID, Subscribers.EMail FROM (Subscribers INNER JOIN SubscriberAddress ON (Subscribers.SubscriberID = SubscriberAddress.ASubscriberID)) WHERE SubscriberAddress.state IN ('#FORM.EmailState#') Use cfqueryparam with the list attribute. Jochem

Re: best way to enter currency format

2003-02-14 Thread Jochem van Dieten
Paul Hastings wrote: (say user is bidding $1,000.00) $1,000.00 $1,000 $1000 1,000.00 1,000 1000 use currency datatype on the backend. I would have said Don't use currency on the backend because it is not an official datatype, but since you are using Access the correct alternative, using

RE: Use a list in where clause?

2003-02-14 Thread AEverett
Try this: SELECT Subscribers.SubscriberID, Subscribers.EMail FROM (Subscribers INNER JOIN SubscriberAddress ON (Subscribers.SubscriberID = SubscriberAddress.ASubscriberID)) WHERE SubscriberAddress.state IN (cfqueryparam value=#FORM.EmailState# cfsqltype=CF_SQL_VARCHAR separator=, list=Yes)

RE: best way to enter currency format

2003-02-14 Thread AEverett
On input, I would get all of the numbers to a consistent format. First, I would remove $ and , cfset BidAmount=Replace(Form.BidAmount,$,,ALL) cfset BidAmount=Replace(Variables.BidAmountALL) Then if there was anything left besides numbers and a . I'd throw an exception. Probably the easiest

RE: CF - PHP comparisons?

2003-02-14 Thread Vince Bonfanti
Hi Mike, I tend to agree with your comments regarding the richness of PHP. If you do a straight comparison of PHP and CFML's built-in functions then they seem pretty equal. However, one thing that's changed in the CFML world with the introduction of CFMX and BlueDragon is that you now have

RE: CF - PHP comparisons?

2003-02-14 Thread Jason Lees (National Express)
Where can I find out more about Bluedragon? Jason Lees Development Team Leader National Express Coaches Ltd. -Original Message- From: Vince Bonfanti [mailto:[EMAIL PROTECTED]] Sent: 14 February 2003 14:20 To: CF-Talk Subject: RE: CF - PHP comparisons? Hi Mike, I tend to agree with

RE: CF - PHP comparisons?

2003-02-14 Thread Vince Bonfanti
Try this: http://www.newatlanta.com/bluedragon There's no information there yet about the .NET version--the official announcement will be made next week. Vince Bonfanti New Atlanta Communications, LLC http://www.newatlanta.com -Original Message- From: Jason Lees (National

RE: CF - PHP comparisons?

2003-02-14 Thread Ken Wilson
Vince, Have you had opportunity yet to review/consider the implications of Microsoft's patent efforts on .NET and how they will impact BlueDragon for .NET? Just curious what your take on all that is. Ken -Original Message- From: Vince Bonfanti [mailto:[EMAIL PROTECTED]] Sent:

Re: best way to enter currency format

2003-02-14 Thread Stephen Moretti
We were talking about this on the UK CF Dev List the other day. Cleaning up input numbers to make them into numbers rather than strings, that is After a bit pedantism (is that a real word?) over the neatest and tidiest regex, this is what finally spat out at the bottom cfset MyNumber =

RE: BlueDragon for .NET (was: CF - PHP comparisons?)

2003-02-14 Thread Vince Bonfanti
BlueDragon for .NET is coded to the standard .NET Framework APIs (just as BlueDragon for J2EE is coded to standard Java APIs). It's not a re-implementation of the .NET Framework (which Microsoft's patents are intended to prevent), but requires that the .NET Framework be installed in order to use

Re: Verity and Clustered Servers: more basic view

2003-02-14 Thread Ryan
Thanks for the ideas everyone, but we figured it out. As usual, it was just something stupid. Works beautifully now. Ryan - Original Message - From: Dave Watts [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, February 13, 2003 10:37 PM Subject: RE: Verity and Clustered

RE: BlueDragon for .NET (was: CF - PHP comparisons?)

2003-02-14 Thread Matthew Small
Wow - I'm looking forward to seeing it. I would love to have some of the classes I use in .NET available to CFML. Think about the ease of report generation using Crystal Reports.NET with BD.NET. Easy report generation was a major factor in switching to .NET. I love to use CFML as well, so this

query to get tablenames

2003-02-14 Thread Tony Weeg
what is the variable or query that will show me tables in a database, so that I can then, select that table to perform a query on? thanks ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping

RE: query to get tablenames

2003-02-14 Thread John Stanley
Select * from information_schema.tables of course this on sql 7 or higher -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Friday, February 14, 2003 10:32 AM To: CF-Talk Subject: query to get tablenames what is the variable or query that will show me tables in a

Re: query to get tablenames

2003-02-14 Thread Jeff Garza
Which Database??? It's different for each one. Jeff - Original Message - From: Tony Weeg [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, February 14, 2003 8:31 AM Subject: query to get tablenames what is the variable or query that will show me tables in a database, so

RE: query to get tablenames

2003-02-14 Thread Darren Fuller
If it's MSSQL then you could try SELECT [name] FROM sysobjects WHERE [type] = 'U' I think MySQL is SHOW TABLES; Darren -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: 14 February 2003 15:32 To: CF-Talk Subject: query to get tablenames what is the variable or query

RE: BlueDragon for .NET (was: CF - PHP comparisons?)

2003-02-14 Thread Jason Lees (National Express)
I was thinking the same thing. It'll save having .Net Webservices etc, I also hope it might Open up full COM+ transactions etc. Jason Lees Development Team Leader National Express Coaches Ltd. -Original Message- From: Matthew Small [mailto:[EMAIL PROTECTED]] Sent: 14 February 2003

RE: query to get tablenames

2003-02-14 Thread Tony Weeg
that was the answer :) Select * from information_schema.tables actually, so that I can strip out the system ones... Select * from information_schema.tables where table_name not IN ('dtproperties','sysconstraints','syssegments') thanks john! ...tony Tony Weeg Senior Web Developer UnCertified

Re:query to get tablenames

2003-02-14 Thread jlangevin
cfquery name=qGetSysObjects datasource=#REQUEST.DSN# SELECT Name FROMSysObjects WHERE Type = 'U' /cfquery ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Get Actual Query Run

2003-02-14 Thread Michael Ross
I have a question. I have a query that is built depending on many things, the where statement, order by, actual columns asked for that kinda thing. I want to save what the actual sql text is that ran that query. Like what you can see in the debugging code. Does this make sense? Any

Re: Get Actual Query Run

2003-02-14 Thread Randell B Adkins
if you have debugging turned on with the options under Debugging Options, you will see EVERY query that was executed, # of records, time it took to process the query and more [EMAIL PROTECTED] 02/14/03 11:02AM I have a question. I have a query that is built depending on many things, the where

Re: Get Actual Query Run

2003-02-14 Thread charlie griefer
Is it just that you want to see the actual SQL code that was passed to the database? Just take the code between your cfquery/cfquery tags and pop it into cfoutput/cfoutput tags. ? charlie Michael Ross writes: I have a question. I have a query that is built depending on many things,

Re: Get Actual Query Run

2003-02-14 Thread Randell B Adkins
Also if you wanted a TXT file or something, sure, just a variable to hold the lines of SQL then write the variable to a file using CFFILE [EMAIL PROTECTED] 02/14/03 11:02AM I have a question. I have a query that is built depending on many things, the where statement, order by, actual columns

RE: Get Actual Query Run

2003-02-14 Thread Matthew Small
So write the code that is in your cfquery into a file: cfquery datasource=dsn select * from table where id = #id# /cfquery cfset querystring = select * from table where id = #id# cffile mode=write variable=querystring I think you can get the idea from here Matthew Small IT Supervisor

RE: Get Actual Query Run

2003-02-14 Thread Mark A. Kruger - CFG
Michael, If you are using CFMX, you can use the ServiceFactory class. I have a blog on this at: http://mxc.blogspot.com/2002_10_13_mxc_archive.html -mk -Original Message- From: Michael Ross [mailto:[EMAIL PROTECTED]] Sent: Friday, February 14, 2003 10:02 AM To: CF-Talk Subject: Get

RE: Get Actual Query Run

2003-02-14 Thread AEverett
You could also put it between CFSAVECONTENT tags if you want to save it to a variable. -Original Message- From: charlie griefer [mailto:[EMAIL PROTECTED]] Sent: Friday, February 14, 2003 11:14 AM To: CF-Talk Subject: Re: Get Actual Query Run Is it just that you want to see the

Re: Get Actual Query Run

2003-02-14 Thread Dave Carabetta
I have a question. I have a query that is built depending on many things, the where statement, order by, actual columns asked for that kinda thing. I want to save what the actual sql text is that ran that query. Like what you can see in the debugging code. Does this make sense? Any

RE: Get Actual Query Run

2003-02-14 Thread Mark A. Kruger - CFG
Michael, If you do this in production mode for some reason watch out. You will be forced to use preservesinglequotes( ) to maintain your query. This will expose you to SQL injection unless you scrub all the user input first. There are some scrubbing UDFs on Ray's UDF site I believe. -Mark

RE: Get Actual Query Run

2003-02-14 Thread Matthew Small
Can you explain that? I don't understand why preservesinglequotes is necessary,m other than when writing the query to file, when sql injection isn't a factor. Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847

Re: Developer Edition IP address

2003-02-14 Thread Frank Mamone
That's exactly what I need! I need to setup a Development server for 3 developers. Are you 100% sure that the CFMX license will accomadate at least 3 connections? Thanks! - Original Message - From: Christian Cantrell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday,

Re: Get Actual Query Run

2003-02-14 Thread Scott Weikert
I'm kind of doing this with a project... in a process, I have a query that is VERY varied, depending on various factors, so there's lots of ifs, switch/cases, etc. that determine the query in the end. What I do is (like some others have mentioned) build up a string variable with the query

Problems with mysql

2003-02-14 Thread Ryan Mitchell
Hey Im runnign CFMX with mysql as my db. Until about a month a go I was using access, but now with mysql, when I insert info into a database I get certian characters (' , ... etc) replaced by just mental stuff. It makes no sense!! Has anyone experienced this before, and found a solution? Ryan

RE: Problems with mysql

2003-02-14 Thread Darren Fuller
Do you have any examples? also what are the field types? -Original Message- From: Ryan Mitchell [mailto:[EMAIL PROTECTED]] Sent: 14 February 2003 16:41 To: CF-Talk Subject: Problems with mysql Hey Im runnign CFMX with mysql as my db. Until about a month a go I was using access, but now

The error that doesn't make sense

2003-02-14 Thread Frank Mamone
Some users sporadically get this message one EVERY page on our site. Error Occurred While Processing Request Please try the following: Check the CFML Reference Manual to verify that you are using the correct syntax. Search the Knowledge Base to find a solution to your problem. Browser Mozilla/4.0

RE: The error that doesn't make sense

2003-02-14 Thread webguy
I've had a problem like this b4 sect this string seems to cause issues for some reason. Also make sure the link to this site is URLEncodedFormat() WG -Original Message- From: Frank Mamone [mailto:[EMAIL PROTECTED]] Sent: 14 February 2003 16:45 To: CF-Talk Subject: The error that doesn't

OT: Preventing Save As of website

2003-02-14 Thread James Milks
Hi all, I am looking at different ways of protecting some content and am wondering if there is a way of supressing the Save As functionality in MSIE. One site I am unable to save like this is CNN.COM. When I try, the browser goes about retrieving all of the files associated, but then an error

RE: Preventing Save As of website

2003-02-14 Thread webguy
Not possible. Give up. Anything you can view on your screen can be saved to your disk. WG I am looking at different ways of protecting some content and am wondering if there is a way of supressing the Save As functionality in MSIE. One site I am unable to save like this is CNN.COM. When I

RE: CF - PHP comparisons?

2003-02-14 Thread Adrocknaphobia Jones
Vince I think you hit the nail on the head in regards to PHP vs CF. But lets be honest with ourselves, there is no CF does NOT have full access to the .NET framework. It barely... barely supports COM anymore. Getting CF to work well with Windows API is an exercise in patience and determination.

Re: Problems with mysql

2003-02-14 Thread Jochem van Dieten
Ryan Mitchell wrote: Hey Im runnign CFMX with mysql as my db. Until about a month a go I was using access, but now with mysql, when I insert info into a database I get certian characters (' , ... etc) replaced by just mental stuff. It makes no sense!! Use cfqueryparam. In the

Standalone CFMX/FlashMX app

2003-02-14 Thread Bryan Stevenson
Hey All, Well I'm embarking on an app that is intended to run off a local database with the functionality to sync with a central connected database when the app is connected to the Net. So I'm wondering if: 1) Anyone has any experience in this arena they'd like to share 2) Would a DNSless

RE: Preventing Save As of website

2003-02-14 Thread Lee Fuller
Yep.. Too true. | -Original Message- | From: webguy [mailto:[EMAIL PROTECTED]] | Sent: Friday, February 14, 2003 9:07 AM | To: CF-Talk | Subject: RE: Preventing Save As of website | | | Not possible. Give up. Anything you can view on your screen | can be saved to your disk. | | WG

RE: Problems with mysql

2003-02-14 Thread Matt Robertson
Are you using cfqueryparam? Cfinsert? Cfupdate? The only thing I've seen go screwy is backslashes, for which there's an easy fix. What ver of mySQL are you running? Matt Robertson [EMAIL PROTECTED] MSB Designs, Inc.

RE: Get Actual Query Run

2003-02-14 Thread Mark A. Kruger - CFG
Let's say you are building a query from user input. Let's say (completely ridiculous I know) that you are storing the login query. Please forgive the sketchiness and bad form of this example. I don't actually handle login this way, but I've seen many who do: Cfset qryString = select * from users

RE: Standalone CFMX/FlashMX app

2003-02-14 Thread Benoit Hediard
Hi Bryan, For your information, if you just want a standalone FlashMX app with database connectivity, you might check MDM Flash Studio Pro (http://www.multidmedia.com/software/flashstudio/). They allow you to generate a Projector with added capabilities such as MySQL and Access Database Support.

Application ? For JavaScript?

2003-02-14 Thread James Blaha
Hello CFers I think this should be a simple question. I have an application that has a result set and the users can delete a row by clicking a delete option at the end of each row. When they do this they are essentially opening up a popped up template that runs some SQL that deletes the

Exporting to Excel from SQlServer using ColdFusion

2003-02-14 Thread SChakka
Hi, Can anybody send me the code snippet using I can export the data to Excel spread sheet. I am able to create a '.csv' file but not a '.xls' file. When I am using the '.xls' for creating the file it is dumping all the information, using a coma delimited list into one column and

RE: Preventing Save As of website

2003-02-14 Thread Chris Kief
Not possible. Give up. Anything you can view on your screen can be saved to your disk. WG I am looking at different ways of protecting some content and am wondering if there is a way of supressing the Save As functionality in MSIE. One site I am unable to save like this is CNN.COM. When I

Re: Standalone CFMX/FlashMX app

2003-02-14 Thread Bryan Stevenson
Thanks Benoit I'll check that out! I guess I should add that the disconnected app does not have to run off CFMX (not even sure if I can compile the CF code and run it offline??). So I'm open to any approach that would allow a Flash MX app to store data (in any format...doesn't have to be a

RE: Application ? For JavaScript?

2003-02-14 Thread Ben Doom
How about a hidden iframe? -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: James Blaha [mailto:[EMAIL PROTECTED]] : Sent: Friday, February 14, 2003 12:27 PM : To: CF-Talk : Subject: Application ? For JavaScript? : : : Hello CFers : : I

Re: Problems with mysql

2003-02-14 Thread Ryan Mitchell
Ok to answer all questions... Im using the last 3 version of mysql (ie 3.x), im using cfinsert + cfupdate. Jochem, how do u specify unicode and charset in the connection string? Ryan On 14/2/03 17:15, Matt Robertson [EMAIL PROTECTED] wrote: Are you using cfqueryparam? Cfinsert? Cfupdate?

RE: Standalone CFMX/FlashMX app

2003-02-14 Thread Simon Horwith
you should take a look at Flash MX's SharedObject. It's similar to an HTTP cookie, but can store up to an unlimited amount of data and it serializes/deserializes complex data, which means you can directly write a recordset object to it without having to do anything other than

Re: Standalone CFMX/FlashMX app

2003-02-14 Thread Leif Wells
Please check out the latest version of Screenweaver as well. http://www.screenweaver.com On Friday, February 14, 2003, at 12:39 PM, Bryan Stevenson wrote: Thanks Benoit I'll check that out! I guess I should add that the disconnected app does not have to run off CFMX (not even sure if I

RE: BlueDragon for .NET (WAS CF - PHP comparisons?)

2003-02-14 Thread Chris Kief
Adam, Looks like you misread Vince's post. :) The CF he was referring to (with full access to the .NET framework) wasn't actually CF at all. It's a version of BlueDragon currently under development by New Atlanta. Have a look at his CFDJ article:

RE: Application ? For JavaScript?

2003-02-14 Thread Jim Davis
You might send all your edit requests through a GIF file, then read the cookie response to determine the action you want to take upon completion. This can be done with one page and no pop-up at all. Here's an article of mine describing on way and linking to several others:

Re: Standalone CFMX/FlashMX app

2003-02-14 Thread Bryan Stevenson
oooOO...that makes me tingle all over SimonI've been at FlashMX for about a week now and I gotta say it's the coolest toy out there. It took a bit to wrap my head around WTF I was doing, but now I see the light ;-) Thanks..that'll help big time That Flash Studio Pro looks pretty

RE: Problems with mysql

2003-02-14 Thread Matt Robertson
im using cfinsert + cfupdate. That's your problem right there. I found when I moved rto mySQL from Access (admittedly about 2 yrs ago) that neither performed reliably, nor could they be debugged given the nature of the two tags. I moved to using straight sql and the problems disappeared.

Re: The error that doesn't make sense

2003-02-14 Thread Frank Mamone
You were using sect too? Did you solve it by changing name of the URL var? - Original Message - From: webguy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, February 14, 2003 11:50 AM Subject: RE: The error that doesn't make sense I've had a problem like this b4 sect

OT: MXDU - Corfield

2003-02-14 Thread Chris Kief
Not sure if anyone picked up on this already...but Mr. Corfield is no longer a keynote speaker at MXDU and Branden Hall has been brought in as a last minute replacement (not that I'd complain about a talk from the Flash master himself). More on the conference: http://www.mxdu.com Branden's

Exporting to Excel from SQlServer using ColdFusion

2003-02-14 Thread SChakka
Hi, Can anybody send me the code snippet using I can export the data to Excel spread sheet. I am able to create a '.csv' file but not a '.xls' file. When I am using the '.xls' for creating the file it is dumping all the information, using a coma delimited list into one column and

RE: CF - PHP comparisons?

2003-02-14 Thread Vince Bonfanti
BlueDragon for .NET will be fully integrated with the .NET Framework, and COM will work very well. BlueDragon will support CFCs and other MX functionality, and beyond. It will be more than a satisfactory solution--you will be delighted. Vince Bonfanti New Atlanta Communications, LLC

Re: Exporting to Excel from SQlServer using ColdFusion

2003-02-14 Thread Bryan Stevenson
Try the Developer's Exchange. I know there are custom tags (mabye UDFs as well from cflib.org) out there to produce Excel files from queries. It should make your life easier ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e.

RE: Exporting to Excel from SQlServer using ColdFusion

2003-02-14 Thread Barney Boisvert
Just write a plain HTML table, and then use CFCONTENT to trick the browser into thinking it's an excel file. Excel will automatically do the HTML - XML conversion when it is opened for the first time. Hell of a lot easier the dealing with plaintext formatting. barneyb -Original

RE: CF - PHP comparisons?

2003-02-14 Thread webguy
BlueDragon for .NET will be fully integrated with the .NET Framework, and COM will work very well. BlueDragon will support CFCs and other MX functionality, and beyond. It will be more than a satisfactory solution--you will be delighted. I persume that it will be the same as any CLI object..

RE: BlueDragon for .NET (WAS CF - PHP comparisons?)

2003-02-14 Thread Adrocknaphobia Jones
Right, But in regards to the comparison of PHP vs CF. Vince was saying the major weakness of PHP is that CF can access the Java API and the .NET API. But CF can't do both at once (At least not in a stable enough configuration where you could deploy it confidently). Back to Perl, a Year or so ago

Re: Application ? For JavaScript?

2003-02-14 Thread James Blaha
Jim, Thanks I'll look into this! Regards, JB Jim Davis wrote: You might send all your edit requests through a GIF file, then read the cookie response to determine the action you want to take upon completion. This can be done with one page and no pop-up at all. Here's an article of mine

Re: Application ? For JavaScript?

2003-02-14 Thread James Blaha
Ben, Do you have an example of this? This sounds very interesting. Regards, James Blaha Ben Doom wrote: How about a hidden iframe? -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: James Blaha [mailto:[EMAIL PROTECTED]] : Sent:

Re: Internationalization Theme

2003-02-14 Thread paul
I am interested in what functionality SQL server 2000 provides which makes internationalization of applications easier. Do you have any pointers to - good unicode support - atomic collation, down to column levels - full text indexing w/unicode support - xml support - works a treat with mx.

Re: Exporting to Excel from SQlServer using ColdFusion

2003-02-14 Thread jon hall
Use SQL Server's export wizard to do the export and save it as a DTS package. Then create a stored procedure to shell out and execute dtsrun and use cfstoredproc to execute it, or use cfexecute for to execute dtsrun. Instant Excel spreadsheet... -- jon mailto:[EMAIL PROTECTED] Friday,

RE: The error that doesn't make sense

2003-02-14 Thread Stephenie Hamilton
Does the error say it is on line 1? When it happens check your cfusionmx\lib dir and ensure the file client.properties is not 0k. ~~ Stephenie Hamilton Macromedia Certified ColdFusion Professional CFXHosting -Original Message- From: Frank Mamone [mailto:[EMAIL PROTECTED]] Sent:

CF based financial calculators

2003-02-14 Thread Nate
Can anyone point me to a good source for CF based financial calculators? I am looking for loan and mortage payment calcs as well as savings, IRA (Roth and regular) calcs. I am willing to pay whatever is necessary for some really good calculators. I checked the CF developer's exchange and the

RE: Get Actual Query Run

2003-02-14 Thread Matthew Small
I understand, it's just that (I thought) you made it sound like SQL-injection-prevention techniques were more necessary when writing the output to file. Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847

RE: another pair of eyes on this CFScript, please

2003-02-14 Thread HOwens
Joshua, thank you for taking the time to answer this ... I tried following your advice below, but ran into a problem ... got an error when I tried to put my array in the function call, I get an error cause it's not a string ... let me show you what I've got going ... On the content page, I have

Re: CF based financial calculators

2003-02-14 Thread Dave Lyons
i have a mortgage one never opened it and not sure whats in it but if you want it let me know and I will send it to u Dave - - Original Message - From: Nate [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, February 14, 2003 1:48 PM

endeca search engine

2003-02-14 Thread Fregas
Has anyone here successfully integrated the Endeca Search engine into Coldfusion using Java or COM? We've bought the product and will likely use the Java version. Has it worked out for you? Did it perform well? Thanks, Fregas

uploading progress bar

2003-02-14 Thread Dave Lyons
I have scene a lot of people ask for an uploading progress bar and I actually have one. I really don't have time to give it a try but if any of you want to try it out and let me know how it works, I'd be glad to send it to you. I would really like to know if its worth while or not before I waste

RE: cffile with unique names

2003-02-14 Thread Rick Faircloth
How do you code for that, Adam? Rick -Original Message- From: Cantrell,Adam [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 12:05 PM To: CF-Talk Subject: RE: cffile with unique names That's true Darren, it will only make

Re: uploading progress bar

2003-02-14 Thread Ryan Mitchell
Aye ill have a go. On 14/2/03 19:28, Dave Lyons [EMAIL PROTECTED] wrote: I have scene a lot of people ask for an uploading progress bar and I actually have one. I really don't have time to give it a try but if any of you want to try it out and let me know how it works, I'd be glad to send it

REReplace and Replace function

2003-02-14 Thread Tuan
Can somebody explain what the difference is between the REReplace and Replace function? Im confused when to use one or the other and their differences. ~| Archives:

RE: REReplace and Replace function

2003-02-14 Thread Tony Weeg
reReplace = replaces based on a RE (Regular Expression) and Replace = replaces based on a string literal? or string? ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting

RE: Application ? For JavaScript?

2003-02-14 Thread Ben Doom
In the main page: div name=hidden style=visibility: hidden; positon: absolute; left: 0; top: 0; iframe src=blank.html width=1 height=1 frameborder=0 id=utilityframe /iframe /div Call the page you were opening in a new window in the iframe using javascript:

RE: cffile with unique names

2003-02-14 Thread Ben Doom
You can specify the destination filename: cffile action=upload filefield=imagefile destination=path/filename.jpg nameConflict=overwrite -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: Rick Faircloth

Re: REReplace and Replace function

2003-02-14 Thread charlie griefer
Tuan writes: Can somebody explain what the difference is between the REReplace and Replace function? Im confused when to use one or the other and their differences. replace() is a simple function to replace one character (or string of characters) with another. for example, in the string

RE: CF - PHP comparisons?

2003-02-14 Thread Vince Bonfanti
Yes, BlueDragon for .NET is completely implemented as CLI-based managed code (well...there is a little unmanaged C++ code in there, but that's also true for the Java version of BlueDragon, and for CFMX). It's not clear at this point that we're going to support cfobject type=java in BlueDragon for

RE: REReplace and Replace function

2003-02-14 Thread AEverett
From: Tuan [mailto:[EMAIL PROTECTED]] Can somebody explain what the difference is between the REReplace and Replace function? Im confused when to use one or the other and their differences. Here's an example. cfset myString=a1b2c3d4e5f6g7h8i9j0 If I wanted to remove the number 1 from

RE: REReplace and Replace function

2003-02-14 Thread Ben Doom
Replace() looks for a literal string within another string and replaces it with yet a third string: Replace(contentstring, stringtoreplace, replacement); With REReplace(), you can search for and replace with regular expressions. This makes the function much more powerful and often more useful,

Re: Developer Edition IP address

2003-02-14 Thread Christian Cantrell
Yes, the CFMX server is in no way a limited edition, so using it for 3 developers will be fine. Just keep in mind that all 3 of those developers must be DevNet subscribers. For more information on the DevNet EULA, see the following URLs:

Re: Developer Edition IP address

2003-02-14 Thread Christian Cantrell
I see your point, however according to your argument, why take any precautions at all against the illegal use of software? If people either comply with EULAs or they don't, why don't all software companies just make fully functional versions of all their products downloadable for free

Re: Problems with mysql

2003-02-14 Thread Jochem van Dieten
Ryan Mitchell wrote: Ok to answer all questions... Im using the last 3 version of mysql (ie 3.x), im using cfinsert + cfupdate. Jochem, how do u specify unicode and charset in the connection string? Use the following in the connectstring:

RE: BlueDragon for .NET (WAS CF - PHP comparisons?)

2003-02-14 Thread Vince Bonfanti
Adam Wayne Lehman (aka Adrocknaphobia Jones) wrote: So BlueDragon is really CF's only hope. (Although from what I've seen I see no reason to belive BD won't deliver) So when will BD.NET get into a phase where I can play with it? Is it really being called BD.NET? We'll put out a call

RE: uploading progress bar

2003-02-14 Thread Ben Doom
Offhand, do you know what technologies this uses? If it's using java or javascript, I'd really like to see it. -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: Dave Lyons [mailto:[EMAIL PROTECTED]] : Sent: Friday, February 14, 2003 2:28

RE: REReplace and Replace function

2003-02-14 Thread Ben Doom
: Regular Expressions can be quite powerful, and I've only scratched the : surface. The syntax can be hard to grok, though. (I don't pretend to be : anything but a Regular Expression amateur.) If you knew the number of times that this particular RENinja learned a new trick from an ameteur who did

RE: cffile with unique names

2003-02-14 Thread Rick Faircloth
Oh, wait, when Adam wrote: rename the file using its original client file name prepended with the ID I was assuming he was doing it as part of the cffile tag...I'm sure he was talking about renaming it prior to the cffile function...right? Rick -Original Message- From:

Re: uploading progress bar

2003-02-14 Thread Dave Lyons
im pretty sure its all cfm ben how was your short drive home last night Dave - Original Message - From: Ben Doom [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, February 14, 2003 2:58 PM Subject: RE: uploading progress bar Offhand, do you know what technologies this

RE: another pair of eyes on this CFScript, please

2003-02-14 Thread HOwens
Forget this request for help ... I've solved the problem. I don't remember, now, why I wrapped my loop in a function, but I thought I did it to try and fix some error. Once removed the function and just ran the loop based on the form submission, everything worked fine. H.

  1   2   >