RE: CFQUERY and STARTROW=0 (??!)

2002-10-01 Thread Mosh Teitelbaum
He's wrong. And "computers" don't start at 0. It's up to the compiler/interpreter to decide what the first index is. In Cold Fusion, the first index is always 1. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ > -O

RE: CFM Files are "Locked"?

2002-10-01 Thread Mosh Teitelbaum
> From: Shawn Grover [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 01, 2002 6:12 PM > To: CF-Talk > Subject: RE: CFM Files are "Locked"? > > Funny thing is that using my account through FTP, I cannot delete > the files. Going to the physical server, using the Exact same account, > I CAN del

CFDJ Readers Choice Awards

2002-10-01 Thread Judith Dinowitz
Thanks, Peter! The direct link to the Readers Choice Awards is: http://www.sys-con.com/coldfusion/readerschoice2002/ Judith : ) ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.hous

RE: Math In MX?

2002-10-01 Thread Stacy Young
How bout: -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 11:31 PM To: CF-Talk Subject: RE: Math In MX? Now THAT's odd... 'cause we can't get it to BE that answer. (and actually.. I made a type-o in the var name in my message. But it i

Re: Math In MX?

2002-10-01 Thread jon hall
I can't make 379/1093 = anything but 0.346752058554 on my MX box... -- jon mailto:[EMAIL PROTECTED] Tuesday, October 1, 2002, 10:18:40 PM, you wrote: LF> Ok.. I'm confused... LF> If... LF> #countmale.record# = 379 (which a cfoutput confirms) LF> And... LF> #responses# = 1093 (which a cfo

RE: Math In MX?

2002-10-01 Thread Lee Fuller
Now THAT's odd... 'cause we can't get it to BE that answer. (and actually.. I made a type-o in the var name in my message. But it is correct in the code.) | -Original Message- | From: jon hall [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, October 01, 2002 7:39 PM | To: CF-Talk | Subje

Macromedia - oops!

2002-10-01 Thread SFN Development
Error Diagnostic Information ODBC Error Code = 08001 (Unable to connect to data source) [Microsoft][ODBC SQL Server Driver][Named Pipes]Specified SQL server not found. SQL = "select * from objects where objectid = '7A4DB8DA-D55A-11D6-840C00508B94F85A'" Data Source = "WEBCONTENT" The error o

RE: Math In MX? (SOLVED)

2002-10-01 Thread Lee Fuller
Looks like it was in the code that the user put in the top. #Responses#, while showing in CFOUTPUT as being correct, was really converted somehow to an invalid object. Reason is that the user did the following: SELECT Count(*) AS TotalRecords FROMGeneralS

RE: Save form data before submit

2002-10-01 Thread Jared Clinton
Paul, You could also consider a more 'low-tech' solution. Store the form values in cookies manipulated entirely client side using javascript. That way you dont need any server side code. Regards, Jared Clinton. -Original Message- From: Jared Clinton Sent: Wednesday, 2 October 2002 1

RE: CFDJ Readers Choice Awards

2002-10-01 Thread Tilbrook, Peter
The link to CFDEV is: http://www.sys-con.com/coldfusion/ Cheers! ** The information contained in this e-mail, and any attachments to it, is intended for the use of addressee and is confidential. If you are not the intended r

OT: CFDJ Readers Choice Awards

2002-10-01 Thread Judith Dinowitz
Last minute shameless Plug: For all of you who didn't vote, and who appreciate these lists, please cast your vote -- there are but minutes remaining to this last day to vote! HOF is in for Best CF Web Service (The mailing lists), Best Web Site, and several educational categories. Judith Dinow

RE: Macromedia - oops!

2002-10-01 Thread Tilbrook, Peter
Yeah. I emailed them about an hour ago - seems they've fixed the problem with the CF Developers Exchange site now however. Thanks MM :) -Original Message- From: SFN Development [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 2 October 2002 12:42 PM To: CF-Talk Subject: Macromedia - oops!

Math In MX?

2002-10-01 Thread Lee Fuller
Ok.. I'm confused... If... #countmale.record# = 379 (which a cfoutput confirms) And... #responses# = 1093 (which a cfoutput confirms) Then how the heck does... End up being 0.0111569031498 ? The answer is simple math.. And SHOULD be.. 0.346752058554. Which, when multiplied by 100 yields

Re: Save form data before submit

2002-10-01 Thread Critter
oi Paul!! are you trying to save the information a person has entered into the fields?? to put into a database or something?? -- Critz Macromedia Certified Advanced ColdFusion Developer http://blog.ctzc.com";> Tuesday, October 1, 2002, 9:29:55 PM, y

RE: Save form data before submit

2002-10-01 Thread Tim Painter
This would be fairly easy to do -- create a hidden frame and set an onBlur or onChange event to change the location of the hidden frame to a .cfm page that processes the request. e.g Then have the processpage.cfm do what you need it to do Tim P. -Original Message- From: Paul Campan

RE: Save form data before submit

2002-10-01 Thread Jared Clinton
It would be possible to change the src of an to 'http://yourserver/tempsave.cfm?formdata1=1&formdata2=2&blah=blah&blahblah=blahblah' The cfm page could return an image using cfcontent after saving your input parameters as appropriate. The event which changes the images source would have to be

Re: Save form data before submit

2002-10-01 Thread jon hall
This is one of those things I've always wanted to do, but never get a chance to... Basically this is how I would do it. function getObject(nameStr) { var ns4 = document.layers ? true : false; var ie = document.all? true : false; var dom = document.getElementById && !docum

RE: Save form data before submit

2002-10-01 Thread Tony Weeg
good ideasits funny, almost everytime i am working on a new bit of code for a client, and i run into something cool i want to try, and i search google, and find nothing, i just open my email and WHAM, there is someone else on THE LIST OF ALL LISTS, who is trying to do the samethanks for th

RE: Save form data before submit

2002-10-01 Thread Sicular, Alexander
that could easily be done. just set up a hidden form field and pass values to it after onblur() or any other event you chose.. or have a window pop up and close itself after submit(). you can do almost anything in javascript. the only thing i take it you don't want to do is refresh the page, ot

RE: Save form data before submit

2002-10-01 Thread Tony Weeg
oh please oh please.that would rock. i hope someone who knows replies to this...this would be very coolor, what about sending the data to a session variable onBlur :) that would be even nicer!! tw -Original Message- From: Paul Campano [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

Save form data before submit

2002-10-01 Thread Paul Campano
Is there a way I can save the data from a form field BEFORE the submit button is pressed? I thought I saw something awhile back that used javascript to save each line to a db onBlur ? Has anyone done this or have an idea on how it can be done? Thanks. Paul Campano

RE: Searching with ListFind

2002-10-01 Thread Ken Brocx
Nope, as far as I know that's how you do it, and believe me you really haven't seen a stupid question until you've been to my hamster bulletin board... :) http://www.hamsterific.com/BBS/BulletinBoard.cfm -Ken -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Tu

RE: Searching with ListFind

2002-10-01 Thread Brian Scandale
Yeah, I know... stupid question. ;-( I was thinking that there was some internal list ready for use... that I just needed to know what and how to address it. Brian At 04:58 PM 10/1/02, you wrote: >Well, I suppose you don't have to define the list if you don't want to. > >Do Something Here I

RE: New & updated content on the Designer & Developer Center

2002-10-01 Thread Vernon Viehe
I wasn't aware of that change, but I'll send your note along to some folks, we'll see if it's something that can be propogated to other areas of the site. -Vern -Original Message- From: jon hall To: CF-Talk Sent: 10/1/2002 5:26 PM Subject: Re: New & updated content on the Designer & De

Re: New & updated content on the Designer & Developer Center

2002-10-01 Thread jon hall
Also noticed you guys tweaked your browser sniffer so that Gecko browsers don't get detected as NS4. Thanks! Mind doing the same for the Dev Exchange? :) -- jon mailto:[EMAIL PROTECTED] Tuesday, October 1, 2002, 8:16:45 PM, you wrote: VV> Hey all, VV> We've got new and udpated content on the

New & updated content on the Designer & Developer Center

2002-10-01 Thread Vernon Viehe
Hey all, We've got new and udpated content on the Designer & Developer Center. I want to highlight a few things that may be of interest to the CFers on this list: * Using Inheritance and Composition in CFCs by Hal Helms Reuse code through supertypes and subtypes-yet another architecture benefi

RE: Searching with ListFind

2002-10-01 Thread Ken Brocx
Well, I suppose you don't have to define the list if you don't want to. Do Something Here If test value Exists -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 2:40 PM To: CF-Talk Subject: Searching with ListFind I have a query that

RE: CFTREE changed???

2002-10-01 Thread Bryan Love
Much thanks, I'll check the known issues on MM's site before I post another question like that :o +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED] +-

RE: CFM Files are "Locked"?

2002-10-01 Thread Rob Rohan
You don't happen to be using Cute FTP are you? and getting an "invalid file handle" error? -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 3:12 PM To: CF-Talk Subject: RE: CFM Files are "Locked"? Well, that would be a problem - we have QA

what do you use for email newsletters ?

2002-10-01 Thread John Innit
We've been asked to add email newsletters / alert functionality to a clients web site. The client is a recruitment company and wants to maintain a list of prospective candidates that can be automatically alerted when the company has new job openings. The clients wants to be able to manually a

tough question ie/vb/iis (not strictly CF)

2002-10-01 Thread David Caplan
This is not strictly a CF question, but I know there are some smart people on this list and I'm in a jam, so I thought I would give it a try. We have a client and they have a web application that they want to train people how to use. The catch is, they don't want to demo the app over the web, the

RE: opinions about XSL

2002-10-01 Thread Rob Rohan
One last thing about XSL's (and this is casting a bad light on MX) MX does not allow you to pass parameters to XSLs. That is rather limiting. While it is possible to write a somewhat generic stylesheet and pass in different params to, for example, sort the information in the new XML document - yo

Re: CF-PayPal

2002-10-01 Thread nick
I found that out. I build a custom interface in less than a half hour. Thanks, though! Nick - Original Message - From: "Eric Dawson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, October 01, 2002 4:00 PM Subject: Re: CF-PayPal > I think pay pal is amazingly simp

RE: CFM Files are "Locked"?

2002-10-01 Thread Shawn Grover
Nope, WS_FTP, and/or IE access to a FTP site. That said, it's not only my account. The sys admin has problems deleting some files as well. On that note, I have to ask: Is it a common practice to use your web directory (the directory the web server serves files from) as the working directory fo

Re: SOT How to set up win XP network to be recognized by OS X

2002-10-01 Thread Sean Daniels
On Tuesday, October 1, 2002, at 04:09 PM, Dick Applebaum wrote: > I would like to get it working on Jaguar, but I can revert to 10.1 on > one of my machines, if needed. I would guess it's not a Jaguar issue. My situation is a bit different - both my Mac and VM are in a private network and use

RE: opinions about XSL

2002-10-01 Thread Dave Watts
> is found this article talking about why xsl is bad > > http://www.xml.com/pub/a/1999/05/xsl/xslconsidered_1.html > > any comments? I haven't personally looked into xsl, the syntax > always looked like RTF :-) through babelfish > > and it looks like doing client side work on the server ( ie

RE: CFM Files are "Locked"?

2002-10-01 Thread Shawn Grover
Well, that would be a problem - we have QA people accessing the server to test the application. If it were only once, then no problem. But we're looking at transfering files up to 50 times a day (only transfering files that are considered "done"). So then our QA people pretty much have to stop

Re: CF-PayPal

2002-10-01 Thread Eric Dawson
I think pay pal is amazingly simple to work with. Check out their dev section, and you might be surprised at how quick you could roll it out. Eric From: <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: CF-Talk <[EMAIL PROTECTED]> Subject: CF-PayPal Date: Tue, 1 Oct 2002 09:36:52 -0600 Anyon

RE: CFM Files are "Locked"?

2002-10-01 Thread Rob Rohan
If it is IIS holding it, you can probably stop and start the service to release it -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 2:49 PM To: CF-Talk Subject: RE: CFM Files are "Locked"? Any way to set that lock period? -Original M

Re: RE: CFM Files are "Locked"?

2002-10-01 Thread ksuh
Dunno. If you find out, tell me. - Original Message - From: Shawn Grover <[EMAIL PROTECTED]> Date: Tuesday, October 1, 2002 3:48 pm Subject: RE: CFM Files are "Locked"? > Any way to set that lock period? > > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECT

RE: CFM Files are "Locked"?

2002-10-01 Thread Shawn Grover
Any way to set that lock period? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 3:24 PM To: CF-Talk Subject: Re: CFM Files are "Locked"? IIS likes to lock files for a little while if they have been recently accessed from the web.

Searching with ListFind

2002-10-01 Thread Brian Scandale
I have a query that will return one column perhaps with 3 or four rows. I want to check the column for the existence of a specific test value. I do NOT want to loop over the query checking each value to see if it matches the test value because I need to do this on every row output from another

RE: CFQUERY and STARTROW=0 (??!)

2002-10-01 Thread Everett, Al
He's an idiot. The first row is 1. CF counts everything from 1. Note arrays in CF start at 1, while in most other languages I've encountered, they start at 0. > I was looking up some stuff on joins versus unions, and came across an > opinion that used CFQUERY as an example. (I won't post the url

OT: Surefire Inc Announces Merger Agreement with Electronic Billi ng Systems (EBS)

2002-10-01 Thread Stacy Young
Sorry for OT folks...but I know some of you already process through us...and this news may help fuel are MX offering! Deal was announced today! Heads up for any of you CF'ers currently doing your payment processing through us...EBS brings eChecks and Debit processing for Europe! Feel free to cont

Re: CFM Files are "Locked"?

2002-10-01 Thread ksuh
IIS likes to lock files for a little while if they have been recently accessed from the web. If you wait about 30 mins, they'll be freed. Annoying. - Original Message - From: Shawn Grover <[EMAIL PROTECTED]> Date: Tuesday, October 1, 2002 3:14 pm Subject: CFM Files are "Locked"? > I h

RE: CFQUERY and STARTROW=0 (??!)

2002-10-01 Thread Subramanian, Samy
The CF query start row starts with 1 not 0 -Original Message- From: Tom Sammons [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 5:09 PM To: CF-Talk Subject: CFQUERY and STARTROW=0 (??!) Hi all, I was looking up some stuff on joins versus unions, and came across an opinion th

RE: debit card processing only

2002-10-01 Thread Stacy Young
Hi Kodjo, We now do debit and eCheck processing for Europe. Feel free to drop me a line for details. Cheers, Stacy Young System Integration Specialist, Architecture Surefire Commerce Need Payment Processing? No Merchant Account Required. http://www.sfcommerce.com (p) 514-380-2700 ext: 3234 (f)

CFQUERY and STARTROW=0 (??!)

2002-10-01 Thread Tom Sammons
Hi all, I was looking up some stuff on joins versus unions, and came across an opinion that used CFQUERY as an example. (I won't post the url since I don't know if it's kosher here.) However, under this person's tutorial topic called "Limiting Results" it used this code: followed by the comme

CFM Files are "Locked"?

2002-10-01 Thread Shawn Grover
I have a situation where our files refuse to be deleted, or renamed. We've checked all the usual stuff like attributes and tried to see who is accessing the file, but still it won't allow itself to be deleted. Anyone see this before? We store our files in VSS, check them out to our web server a

CFX_FILE unknown action

2002-10-01 Thread Bruce Holm
The hosting service that I'm using for CF requires the use of CFX_FILE and CFX_DIRECTORY custom tags instead of CFFILE and CFDIRECTORY tags. They are supposedly the same except the prior versions require a Username and Password additional parameters. I have set up a new domain on this hosting se

Re: QofQ and dates...

2002-10-01 Thread Jochem van Dieten
Raymond Camden wrote: > > As far as I know, you need to use queryParam - that's the only way I've > gotten it to work. Just strings formatted as '-mm-dd' works fine for me. But as the docs say, ODBC formatted dates are not supported. Jochem

RecruitingSolutions.NET

2002-10-01 Thread Mark A. Kruger - CFG
Folks, I have a customer wanting to use "recruitingsolutions.net" as a possible solution to an applicant tracking system they want to build. Has anyone out there ever used them? Do you know anybody who built any of their stuff? Also, does anyone have any other "applicant tracking" type sites or

RE: QofQ and dates...

2002-10-01 Thread Raymond Camden
> Can you qualify this? What I mean is, does this apply to both CF 5 and > MX? Is using CFQueryParam the only way to execute date comparisons in > QofQ's? Or are there other ways? As far as I know, you need to use queryParam - that's the only way I've gotten it to work. Don't have my CF5 handy ye

Re: QofQ and dates...

2002-10-01 Thread Chris Montgomery
Howdy Raymond, Tuesday, October 1, 2002, 12:40:02 PM, Raymond Camden wrote: RC> QofQ can do date comparisons. Can you qualify this? What I mean is, does this apply to both CF 5 and MX? Is using CFQueryParam the only way to execute date comparisons in QofQ's? Or are there other ways? As I menti

RE: SQL Text question from a beginner

2002-10-01 Thread Tony Weeg
yeah. but. so is a lot on this list ;) ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 4:26 PM To:

Re: OT: Flash Problem

2002-10-01 Thread John Dowdell
At 11:26 AM 10/1/2, Joshua Miller wrote: > Anyone have any clue what's up here? It could be a corrupt file, can't rule that out. With large libraries there's also the possibility of a naming conflict, which in the past has produced similar symptoms. (Two items named the same, and one appears to v

Re: That free JS tree

2002-10-01 Thread Jon Hall
Another one... http://www.domapi.com/examples/index.cfm?s1=Tree.htm -- jon mailto:[EMAIL PROTECTED] Tuesday, October 1, 2002, 3:12:46 PM, you wrote: ksc> A couple of days ago, someone posted a link to a js tree. I can't seem to find it in the archives. Anyone got it? ksc>

Re: How to get directory from full URL?

2002-10-01 Thread S . Isaac Dealey
I should probably have a UDF like ListRestReverse() to do that, 'cause I've done it in a number of places... but I don't. :P There might be one on cflib.org tho... I haven't checked. Isaac Certified Advanced ColdFusion 5 Developer www.turnkey.to 954-776-0046 > Mr. Dealey gets a cookie! > Thank

RE: SQL Text question from a beginner

2002-10-01 Thread Mosh Teitelbaum
Actually, I'm a Coke and Mountain Dew coder. Hot caffeine just doesn't do it for me. But than, this is off topic, isn't it? 8^) -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ > -Original Message- > From: Tony W

Re: SOT How to set up win XP network to be recognized by OS X

2002-10-01 Thread Dick Applebaum
Sean Do you set the win IP address manually or is it being furnished by VPC -- I saw somewhere that VPC acts like a DHCP server (under one setup) to provide the win machine an IP address. Dick On Tuesday, October 1, 2002, at 12:41 PM, Sean Daniels wrote: > On Tuesday, October 1, 2002, at 08

Re: list delima

2002-10-01 Thread S . Isaac Dealey
> > >PriceNum, > "^")#> >#CurrentOptionPrice#)> > I'd start by using a list loop instead of an iterative loop... Or better yet, eliminate the loop altogether This is probably more efficient. It's _definitely_ less code. Isaac Cert

RE: Detecting Acrobat?

2002-10-01 Thread Mosh Teitelbaum
Here's some HTML/JS code that I wrote way, way back that should give you what you need. Combine this with using JS to update a hidden form field and you can figure out whether or not the client supports Acrobat. My Mime Types Page