CFQUERY question

2001-02-08 Thread Joby Bednar
I've got a field in a database that is a list of id numbers. When creating a query how do I say pull all records that have an id of "whatever" in that list? I don't want to use CONTAINS since the id could be "1" and any number with "1" in it could return the record like "142,3,8,76". Any

Re: OT: W2K vs. NT

2001-02-08 Thread paul smith
You can get SQL Server 2000 Enterprise with 25 CALs for $3200 at: http://shop.store.yahoo.com/i-market/sqlser20ened.html But, in my opinion, there's no TECHNICAL reason to go SQL2000 rather than SQL7. SQL7 with 10 cals for $1189 at: http://shop.store.yahoo.com/dealsoftware/micsqlser70w1.html 20

Re: HTML/OS

2001-02-08 Thread Stephen M. Aylor
they are obviousely watching this list as several items on the comparison have changed since some of the posts indicating no IIS for CF - that is now a YES - Original Message - From: "Aaron Johnson" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, February 07, 2001

Browser Question

2001-02-08 Thread Sandi Benditt
I have a very simple application. It takes only 2 templates (not counting my application page). It lets the user query a database of about 9500 records of our company's different office locations and addresses. They can choose a report by stock location, city, state, zip code, region, geo

RE: String Concatenation in CFSCRIPT

2001-02-08 Thread Caulfield, Michael
If you're concatenating in a loop, you probably want myvariable = myvariable myQuery.Link "?urlvariable=" myQuery.otherquerydata NOT myvariable = myQuery.Link "?urlvariable=" myQuery.otherquerydata That said, string concatenation in loops can be pretty expensive operations: you

RE: trim a string variable

2001-02-08 Thread Braver, Ben:
cfset newfilename = #left(File.ServerFile,(len(File.ServerFile)-4)# This will take the length of the string, subtract 4 from the length, use that for the left function. -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 10:56 AM To: CF-Talk

RE: CF Query Column Order - Random?

2001-02-08 Thread Bob Silverberg
There's a tag on the developer's exchange called CFX_QueryColumns, that returns the List of Columns in the same order as that returned by the database. This may help you do what you want. Bob -Original Message- From: Scott Becker [mailto:[EMAIL PROTECTED]] Sent: February 7, 2001 12:53

RE: HTML/OS

2001-02-08 Thread Jennifer
At 01:26 PM 2/7/01 -0500, you wrote: They didn't mention anything about error handling either... Everyone check out this page! :) http://www.aestiva.com/pages/htmlos/a061497.22.18854561327 Nice. I just about timed out on one of the pages in the site but I got bored and went somewhere else

RE: trim a string variable

2001-02-08 Thread Philip Arnold - ASP
Is there a way to trim a string like : file.jpg to : file (aka knock off the last 4 characters) cfset newfilename = #left(File.ServerFile,4)# Does not work because the name of the file in the database could be longer then 4 characters Is there a function that im missing to trim off

RE: trim a string variable

2001-02-08 Thread Jay Jennings
The easiest way is probably by using the ListFirst function like this: newName = ListFirst(oldName, ".") jay -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 10:56 AM To: CF-Talk Subject: trim a string variable Is there a way

RE: harpoon beta

2001-02-08 Thread ibtoad
Yes -Original Message- From: John Quarto-vonTivadar [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 1:57 PM To: CF-Talk Subject: harpoon beta did anyone try out the Harpoon beta yet? (and, which one 2? or 2_250 ? ) ATTN HouseofFussion: Please start a Harpoon

RE: String Concatenation in CFSCRIPT

2001-02-08 Thread Philip Arnold - ASP
I suppose the subject says it all. How do you perform string concatenation in CFSCRIPT? This isn't working: CFLOOP query="myQuery" CFSCRIPT myvariable = myQuery.Link "?urlvariable=" myQuery.otherquerydata /CFSCRIPT /CFLOOP I don't have the original code, since I

RE: Wanted: Sr. Developer

2001-02-08 Thread Philip Arnold - ASP
Isn't this what the CF-Jobs list is for? CF-ThereAreTooManyLists Maybe, but CF-Talk is for TALKing about CF, while CF-Jobs is for JOBS using CF... Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20 8680 1133 "Websites for the real world"

Re: HTML/OS

2001-02-08 Thread Jeffry Houser
lsellers wrote: I'm suspicious of any product that does not adhere to standards. It seems counterproductive to create a custom database, that does not use SQL. I wonder how they keep track of users who leave and come back, since it claims it is fully state persistent, yet

RE: trim a string variable

2001-02-08 Thread Lord, Heath
You can do several things... Using the "." as a list delimiter, you could use listfirst() If you know that the extension will always be 3 characters plus a ".", you can use left(var,val(len(var)-4)) blah blah blah Heath -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]]

RE: ORDER BY?

2001-02-08 Thread Peter J. MacDonald
You need to use a sub select to the order by. Select ID, (Select ID, SUM(amount) from contestant group by ID) from contestant order by summed amount Been a while since I have done something like that but that is the general gist. Thank You, Peter Peter J. MacDonald II Creative Computing,

SQL 2000

2001-02-08 Thread Phoeun Pha
what features does it have that SQL 7 doesn't? Bug fixes maybe? I mean, is it worth upgrading to considering how much it costs? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

RE: trim a string variable

2001-02-08 Thread Phoeun Pha
Left(var,Len(var)-4) Let's say var = Bahehehe You End up with Bahe Left gives x numbers of characters in var from the left, and Len(var)-4 tells it to get X numbers of character minus 4. that way, u get everything except the last 4 numbers. Bahehehehe!! -Original Message- From:

Re: Wanted: Sr. Developer

2001-02-08 Thread Clint Tredway
I agree.. -- Clint Tredway www.factorxsoftware.com -- ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

RE: Custom Tag

2001-02-08 Thread Robert Long
causes the following error if you use a comma in amount... An error occurred while evaluating the expression: monthlypayment = round((ammount * rate / (1 - (1 / (1 + rate) ^ payments))) * 100) Error near line 37, column 7.

RE: trim a string variable

2001-02-08 Thread Caulfield, Michael
left(File.ServerFile,len(File.ServerFile)-4) -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 12:56 PM To: CF-Talk Subject: trim a string variable Is there a way to trim a string like : file.jpg to : file (aka knock off the last 4

RE: ORDER BY?

2001-02-08 Thread Bob Silverberg
Just use a numeric reference to the column's position in your order by. In your example, if you want to order by the highest total points, just say: ORDER BY 2 because SUM(AdjPoints) is the second column. Bob -Original Message- From: Jay Patton [mailto:[EMAIL PROTECTED]] Sent:

Re: W2K vs. NT

2001-02-08 Thread Greg Wolfinger
If you're only using SP5 (as opposed to SP6) for your web server, then you might be using the various FuseBox URL faking techniques. Those don't work on NT4 SP6 or Win2k. That's not an issue if this is just a SQL box, but do keep that fact in mind... Not true. Our servers running Win2k SP1

RE: trim a string variable

2001-02-08 Thread Bob Silverberg
Look at the List functions within ColdFusion - they are extremely useful. In your example, you could say cfset newfilename = ListFirst(File.ServerFile,".") Note that you don't need the # signs inside the CFSET tag. Bob -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]]

Re: W2K vs. NT

2001-02-08 Thread Jon Hall
Advanced Server is not really necessary, get the Server version. Adv Server provides very nice load balancing and clustering but other than that, the regular server version has everything you need. Definately dont put Professional on a server though. jon - Original Message - From:

Re: W2K vs. NT

2001-02-08 Thread Fred T. Sanders
So what's your commision? - Original Message - From: "Michael Buffington" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, February 07, 2001 2:21 PM Subject: RE: W2K vs. NT I've found Win 2K to be very stable. I use it for my workstations, as well as a CF/IIS

RE: ORDER BY?

2001-02-08 Thread Christopher Olive, CIO
order by the aggregate function. cfquery name="GetTotalPts" datasource="?" dbtype="ODBC" SELECT ContestantID, SUM (AdjPoints) as TOTALPTS, SUM (MoneyEarned) as TOTALMONEY FROM ResultsManager GROUP BY ContestantID ORDER BY SUM(AdjPoints) /cfquery chris olive, cio cresco

RE: 'mailto' content

2001-02-08 Thread Terry Bader
Michael, your code is correct. It is the user's default email program that should interpret the chars and format they accordingly... your code produces this in outlook, being sent to an the blah.cfm email: This is a test. I like testing things. This is

RE: CFFILE :: Multiple image uploads?

2001-02-08 Thread Stephen Kellogg
What about asking the user how many images they want to upload with the default of one. If they put in 7, reload the page with a loop for the input box(es) to dynamically generate 7 input boxes. Just a thought... Stephen -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]]

Re: W2K vs. NT

2001-02-08 Thread Jim McAtee
You're missing a product level here: "Windows 2000 Server" which is approx. $700 vs. $3200 for "Windows 2000 Advanced Server". "Windows 2000 Pro" is the successor to NT Workstation, which also had the same connection limitations when running IIS. Jim - Original Message - From:

Re: String Concatenation in CFSCRIPT

2001-02-08 Thread Billy Cravens
Your concatenation is correct. However, you must put a semi-colon at the end of statements, just like in JavaScript. -- Billy Cravens HR Web Development, Sabre [EMAIL PROTECTED] Jeffry Houser wrote: I suppose the subject says it all. How do you perform string concatenation in

RE: trim a string variable

2001-02-08 Thread Terry Bader
cfset newfilename = #left(File.ServerFile,(LEN(File.ServerFile)-4))# should work, however remember that not all files have just a 3 letter ext. you might want to just use CFSET newfilename = server.serverfilename serverfilename is the file without ext and period... another long way is to grab

Re: trim a string variable

2001-02-08 Thread Gary Dusbabek
cfset myString = file.jpg cfset myString = left(myString,len(myString)-4) or something like that should do what you're asking. You might need to adjust the 4 to be a 3 or 5 to account for a one-off error (I'm not near a CF machine at the moment and can't test it). A smarter way would be to

RE: W2K vs. NT

2001-02-08 Thread Garza, Jeff
* it's important to mention that if you're ever planning on web serving with * Win2K, that you should install the Win2K advanced version. Win2K Pro only * allows 10 connections to IIS at a time, Advanced allows unlimited. I think that you are confusing Win2k Professional (workstation) with

Re: HTML/OS

2001-02-08 Thread Michael
Sounds something like frontpage2000 the way they describe it, mite be good, but I DOUBT IT. [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... There's glib, glad-handing, sales hype, and there's product knowledge. The two don't necessarily go together. --John

RE: trim a string variable

2001-02-08 Thread Terry Bader
correction, line 3: CFSET newfilename = server.serverfilename should read CFSET newfilename = file.serverfilename sry... Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL PROTECTED] (757)581-5981

Re: Custom Tag

2001-02-08 Thread Mr MB Barnum
Tried downloading your custom tag and got NOTHING "Kevin Schmidt" [EMAIL PROTECTED] wrote in message news:012701c09141$595e54f0$9621a098@win2kserver... Hi everyone, I just finished up an article for the April issue of CFDJ on Custom Tags. The custom tag is for calculating a mortgage payment

RE: trim a string variable

2001-02-08 Thread Chris Montgomery
If you think of your string "file.jpg" as a list made up of two strings "file" and "jpg" delimited by the period, you can do this: cfset filename = ListFirst(file.jpg, ".") cfoutput#filename#/cfoutput == will give you "file" HTH, Chris Montgomery [EMAIL PROTECTED] Web Development

RE: HTML/OS

2001-02-08 Thread Philip Arnold - ASP
They also say it won't run on Netscape Enterprise. Funny, I guess I've been just imagining that it runs on Enterprise like we have here. . . . . Also they must not know about Session and Application scope variables . . . It now says it runs on IIS, but not Netscape yet... The other thing

Printing from CF Output page

2001-02-08 Thread Michael Kear
I have a number of small apps that are basically queries, with results pages showing a table tailored to the user's circumstances. I want the users to be able to print the page from their browsers. IE users ... no problem. They just hit the print button and get a paper version of what they

CFSLIDER

2001-02-08 Thread Matthew Walker
Hi, Anybody had any trouble with CFSLIDER? I used it here in a Web page, and it seems like machines w/o CF installed don't automatically dl the Java applet (machines with CF installed already have the applet installed I think). One thing I wonder is the CODEBASE="/CFIDE/classes/" in the

CFSLIDER

2001-02-08 Thread Matthew Walker
Hi, Anybody had any trouble with CFSLIDER? I used it here in a Web page, and it seems like machines w/o CF installed don't automatically dl the Java applet (machines with CF installed already have the applet installed I think). One thing I wonder is the CODEBASE="/CFIDE/classes/" in the

SQLOLEDB questions

2001-02-08 Thread thanh nguyen
I set up the sqlledb in the cf administration sucessfully and I tried to write the CFQuery and CFSTOREDPROC, but some how it doesn't work, when i load up the page, it takes forever, if someone have any examples codes so i can follow thanks ~~

Re: Session timeout question

2001-02-08 Thread Bud
On 2/7/01, Phoeun Pha penned: Oh, i know the question now! Are individual session variable timeouts independent of other session variables, or are they all affected at the same instance? All session variables that exist are refreshed at the same time when cfapplication loads and will time out

Re: W2K vs. NT

2001-02-08 Thread Bud
On 2/7/01, Greg Wolfinger penned: I have found that Win2k is a lot more stable. Migrating is a bad ideabut any new servers that are using the Wintel solution should run Win2k OK, great. FYI. I signed up for a biz account with PC Connection and they're going to sell me SQL 2000 with a

RE: W2K vs. NT

2001-02-08 Thread Bud
On 2/7/01, Zachary Bedell penned: If you're only using SP5 (as opposed to SP6) for your web server, then you might be using the various FuseBox URL faking techniques. Those don't work on NT4 SP6 or Win2k. That's not an issue if this is just a SQL box, but do keep that fact in mind... I had

Removing the documentation and sample applications

2001-02-08 Thread Aidan Whitehall
WRT security, does anyone know off the top of their head what files need deleting (and any other changes that might need making) in order to remove the sample applications and documentation if they were selected when installing ColdFusion on a server? Thanks -- Aidan Whitehall [EMAIL

RE: ascf.dll

2001-02-08 Thread Aidan Whitehall
ASCF.DLL is for ASAPI, primarily Apache. There are many of these DLL's for different web server protocols. Thanks. -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services http://www.netshopperuk.com/ Telephone +44 (01744) 648650 Fax +44 (01744) 648651

Re: W2K vs. NT

2001-02-08 Thread Dave Hannum
Look out - we've got a runaway!! I've received this message 8 times so far . . . . (along with a bunch of others . . . ) - Original Message - From: "Greg Wolfinger" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, February 07, 2001 2:17 PM Subject: Re: W2K vs.

HTML/OS (Persistant State Management *WITH* cookies?

2001-02-08 Thread Jeffry Houser
Despite their claims, HTML/OS apparently does not use persistent state management w/o cookies. Or maybe they use a different version of persistent. [snip] Enter your login ID and password to obtain access to HTML/OS support services. If you selected the auto login option then upon logging in

RE: W2K vs. NT

2001-02-08 Thread Michel Vuijlsteke
If you're only using SP5 (as opposed to SP6) for your web server, then you might be using the various FuseBox URL faking techniques. Those don't work on NT4 SP6 or Win2k. That's not an issue if this is just a SQL box, but do keep that fact in mind... Is there a way of making that technique

Displaying the IP of a server

2001-02-08 Thread Aidan Whitehall
Can't find the answer to this probably oh-so-easy question... What variable holds the IP address of a server? Turned debugging and there's no cgi variable that displays it... only server name which is the URL part after http://. Thanks -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd

Installing Advanced Security on NT4

2001-02-08 Thread Aidan Whitehall
Can you subsequently install Advanced Security on an NT4 CF 4.0.1 box if it wasn't selected during the original installation? Thanks -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services http://www.netshopperuk.com/ Telephone +44 (01744) 648650 Fax +44

Re: Stored Procedure speed curiosity

2001-02-08 Thread Paul Hastings
I had always presumed that a Stored Procedure ran faster than a SQL query... the problem is that when I actually run speed tests, it's about the same speed... did you try running the sp w/cfquery? in any case, the sp will get faster in the long run. And NOT R.RequestId In (Select distinct

RE: Btrieve conversion

2001-02-08 Thread Kollodge, Lynn M.
Eron, Here is some info I found from an Access listserv. It's not much, but maybe it can get you started. "I did a web search using ODBC and btrieve and got many hits, including Pervasive, SW-Tools, SWSoft and others. Try Lycos, or yahoo, or...whatever your favorite search engine is." AND

RE: Parsing HTML in ColdFusion

2001-02-08 Thread Sicular, Alexander
usage may vary. -Alex -Original Message- From: Caulfield, Michael [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 2:44 PM To: CF-Talk Subject: RE: Parsing HTML in ColdFusion Note that it can get a little more complicated, depending on what level of accuracy you want.

OT: repeating maling list messages

2001-02-08 Thread Mak Wing Lok
am i the only one or do the mailing list message keep repeating?? is there anything wrong with the mailing list? why i keep getting the same messages? mak wl ~~ Structure your ColdFusion code with Fusebox. Get the official book at

OT: Mutiple CFTalk messages

2001-02-08 Thread Windle, Kevan
I'm getting multiple copies of postings today. Is it just me? ** The opinions expressed in this E-mail are those of the individual and not necessarily the company. This E-mail and any files transmitted

Re: OT: W2K vs. NT

2001-02-08 Thread Paul Hastings
But, in my opinion, there's no TECHNICAL reason to go SQL2000 rather than SQL7. SQL7 with 10 cals for $1189 at: price aside, sql2000 does have these which i find interesting : - user defined functions - indexed views - xml support (includes nifty metadata stuff) - named log marks (can

Re: HTML/OS - WRRONG

2001-02-08 Thread Jeffry Houser
Big Brother is watching... It did not say that this morning. I swear it. Phoeun Pha wrote: Funny, i just looked at that site and it does say that CF run on IIS -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 11:41

Re: trim a string variable

2001-02-08 Thread Robert Kuhn
cfset newfilename = #mid(File.ServerFile,1, len(File.ServerFile)-4)# This just truncates the last 4 characters off the end, obviously won't work if the extension is longer than 3 characters. Robert --- In the real world as in dreams nothing is quite what it seems. - Dean R. Koontz, The Book

RE: Another alternative to CF

2001-02-08 Thread Dave Watts
Check out www.tagfusion.com. This is a servlet engine that uses CF tags. Kinda cool... I guess... It's been done before. Before Allaire purchased Live Software, the original makers of JRun, that product had an add-on called CF_ANYWHERE, which would allow you to run CFML 2.0 code on JRun -

RE: Attn HouseofFussion

2001-02-08 Thread Steve Drucker
The "official" Harpoon mailing list is now available at http://chattyfig.figleaf.com -S -Original Message- From: Steve Drucker [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 2:22 PM To: CF-Talk Subject: RE: Attn HouseofFussion The "official" Harpoon mailing list will be

CFSLIDER

2001-02-08 Thread Matthew Walker
Hi, Anybody had any trouble with CFSLIDER? I used it here in a Web page, and it seems like machines w/o CF installed don't automatically dl the Java applet (machines with CF installed already have the applet installed I think). One thing I wonder is the CODEBASE="/CFIDE/classes/" in the

RE: CFQUERY question

2001-02-08 Thread bflynn
Try the CF functions ListContains or ListFind. We dealt with the very same issue and used one of these two to solve it, but I don't remember which. This works as long as your database field is exactly a CF list format. Brian -Original Message- From: Joby Bednar [mailto:[EMAIL

RE: Session timeout question

2001-02-08 Thread Terry Bader
session timeout refers to a session as a whole and not the individual components. all session scope variables will be cleared for that session when the timeout limit is hit after the last time the user had used the site during that specific session. hope that made sense. Terry Bader

RE: Parsing HTML in ColdFusion

2001-02-08 Thread Terry Bader
im jumping into the middle of this conversation, so please forgive if i am off topic... seems to me this is exactly what i just somewhat-finished working on last night, so i will paste the part of the code that you are interested in this code is being used to pull data from a status page

Re: String Concatenation in CFSCRIPT

2001-02-08 Thread Jeffry Houser
:hmm:Semi-colon. I'm pretty sure it was there (I swear it). Typo in the code below. When I outputted the resulting variable it only contained 'myQuery.link', not the other two values. John Anderson wrote: CFLOOP query="myQuery" CFSCRIPT myvariable = myQuery.Link

(Admin) Server explosion

2001-02-08 Thread Michael Dinowitz
The mail server blew up yesterday afternoon and I've been working on getting it back up without losing anything. Some of you may notice a double message or two and an explosion of mail. This is unavoidable as the system is getting everything out. Sorry for the inconvenience. Michael Dinowitz

Regular Expression Help

2001-02-08 Thread Joe Sheble aka Wizaerd
I have some text, and in this text there may or may not be URLs. Some of these URLs may already be inside of an A HREF tag while others may not. I need a regular expression that will find all the URLs (starting with http:// or www. or email addresses) that are not already inside of HREF

OT: Mailing List Server Explosion?

2001-02-08 Thread C. Hatton Humphrey
Did anyone else just get a huge amount of repeats last night, or do I need to talk to my network admin about our mail server recreating 24 e-mails about 100 times... I walked in this morning and had 233 e-mails from this list... and no dupes from anything else. Hatton Humphrey

Re: String Concatenation in CFSCRIPT

2001-02-08 Thread Jeffry Houser
Single quotes... that had to be it. Much thanks. The semi-colon I knew (typo in my code) Much thanks. "Sicular, Alexander" wrote: try this - CFXCRIPT var1 = 'some text'; var2 = 'some more text'; var3 = var1 ' ' var2 ' ' 'yet some more text'; /CFXCRIPT !DOCTYPE

RE: trim a string variable

2001-02-08 Thread Craig Dudley
Try cfset filename = "file.jpg" cfset newfilename = spanexcluding(filename,".") -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: 07 February 2001 20:26 To: CF-Talk Subject: RE: trim a string variable Left(var,Len(var)-4) Let's say var = Bahehehe You End up with

Date Validation

2001-02-08 Thread James Taavon
I want to do check to see if users are entering the date properly in my form. Is this correct? cfif #form.due_date# IS NOT #DateFormat(form.due_date, "mm/dd/")# SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript" !-- alert ('Your Date entry is invalid.')

RE: HTML/OS - WRRONG

2001-02-08 Thread lsellers
Funny, i just looked at that site and it does say that CF run on IIS Methinks we have a *mole* amongst us then. I looked, it DOES now say it runs on IIS. That was not the way it was yesterday though. Still says it doesn't run on netscape servers. Haven't run on them in a year or so, but I

RE: Wanted: Sr. Developer

2001-02-08 Thread Hal Helms
Does that mean we need another list for TALKing about JOBS? Hal Helms == See ColdFusionTraining.com for info on "Best Practices with ColdFusion Fusebox" training == -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 3:40 PM To:

RE: SQL 2000

2001-02-08 Thread DeVoil, Nick
what features does it have that SQL 7 doesn't? http://www.microsoft.com/sql/productinfo/whatsnew.htm ** Information in this email is confidential and may be privileged. It is intended for the addressee only. If you have

Getting Access to HARPOON

2001-02-08 Thread Steve Drucker
If you have not been able to access the Harpoon beta through beta.allaire.com, try the following URL instead: http://beta.allaire.com/harpoon Regards, Steve Drucker CEO Fig Leaf Software ~~ Structure your ColdFusion code with Fusebox. Get the

Re: SQL 2000

2001-02-08 Thread Jon Hall
Tons of new stuff, udf support expanded, cascading dri, instead of triggers , enterprise manager got a major overhaul...plus many many more! ;-) jon - Original Message - From: "Phoeun Pha" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, February 07, 2001 3:44 PM

Re: String Concatenation in CFSCRIPT

2001-02-08 Thread Jeffry Houser
Philip Arnold - ASP wrote: I suppose the subject says it all. How do you perform string concatenation in CFSCRIPT? This isn't working: CFLOOP query="myQuery" CFSCRIPT myvariable = myQuery.Link "?urlvariable=" myQuery.otherquerydata /CFSCRIPT /CFLOOP

RE: trim a string variable

2001-02-08 Thread Jeff Beer
Try: cfset myFileName = ListFirst(File.ServerFile, '.') This uses a list function, treating the '.' as a delimiter. Jeff Beer Senior Programmer Architect Hydrogen Media, Inc (727) 530-5500 x303 [EMAIL PROTECTED] -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent:

RE: harpoon beta

2001-02-08 Thread John McKown
LOL John McKown, VP Business Services Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 email: [EMAIL PROTECTED] phone: 302-736-5515 fax: 302-736-5945 icq: 1495432 -Original Message- From: ibtoad [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 3:41 PM

Re: String Concatenation in CFSCRIPT

2001-02-08 Thread Jeffry Houser
"Caulfield, Michael" wrote: If you're concatenating in a loop, you probably want myvariable = myvariable myQuery.Link "?urlvariable=" myQuery.otherquerydata NOT myvariable = myQuery.Link "?urlvariable=" myQuery.otherquerydata Actually, the first one was correct. I was

Re: OT: Mailing List Server Explosion?

2001-02-08 Thread Tom Forbes
It happened to me too, but to a lesser degree. Tom At 08:59 AM 2/8/01, you wrote: Did anyone else just get a huge amount of repeats last night, or do I need to talk to my network admin about our mail server recreating 24 e-mails about 100 times... I walked in this morning and had 233 e-mails

RE: hardware

2001-02-08 Thread Kent Runyan
APC makes something... I think it's called a Master Switch. It has 8 ports you can switch on/off through a web page interface. Kent Runyan -Original Message- From: Nick Call [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 08, 2001 8:09 AM To: CF-Talk Subject: OT: hardware O.T.

RE: Mailing List Server Explosion?

2001-02-08 Thread Dylan Bromby
it's not just you. -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 08, 2001 6:00 AM To: CF-Talk Subject: OT: Mailing List Server Explosion? Did anyone else just get a huge amount of repeats last night, or do I need to talk to my network

Problem with Insert Using Select

2001-02-08 Thread andrew kopelman
I want to insert new records into a table which has MyUUID as its primary key as well as a column, VersionId, which needs to be updated. Each new record should be identical to the old record, except for a new MyUUID and an incremented VersionID. For example, this old record: MyUUID:

Re: [Regular Expression Help]

2001-02-08 Thread Alex
first strip out all the href tags then add href tags to all URLS Joe Sheble aka Wizaerd [EMAIL PROTECTED] wrote: I have some text, and in this text there may or may not be URLs. Some of these URLs may already be inside of an A HREF tag while others may not. I need a regular expression that

RE: Attn HouseofFussion

2001-02-08 Thread David Fauth
Steve, I didn't see the list on the page. dave -- Original Message -- From: Steve Drucker [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 07 Feb 2001 17:13:28 -0500 The "official" Harpoon mailing list is now available at

RE: HTML/OS (Persistant State Management *WITH* cookies?

2001-02-08 Thread Aaron Johnson
All throughout the site they simply track you by an url variable. If you send the url to a friend, all of a sudden your friend now looks like you... if you close your browser and open it back up.. you get a new session... Persistent State Management? Sure, while you keep your browser open. An

Re: Date Validation

2001-02-08 Thread Scott Weikert
Why not use CFFORM and the validation built in? There's a "date" option for that :) - Original Message - From: "James Taavon" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, February 08, 2001 7:39 AM Subject: Date Validation I want to do check to see if users are

RE: Getting Access to HARPOON

2001-02-08 Thread Chris Alvarado
any major problems with Harpoon beta? Also I remember seeing a breif explanation as to what it is but can anyone direct me to some more detailed info on it? Specifically what is it? What can it do? etc -chris.alvarado [developer] - VerticalNet -Original Message- From: Steve Drucker

RE: Mailing List Server Explosion?

2001-02-08 Thread Jason Larson
YES!!! AAARRRGGGH!! -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 08, 2001 7:00 AM To: CF-Talk Subject: OT: Mailing List Server Explosion? Did anyone else just get a huge amount of repeats last night, or do I need to talk to my

Re: Attn HouseofFussion

2001-02-08 Thread Howie Hamlin
I only see three mailing lists and none specifically say harpoon... Regards, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - the World's most configurable mail server Get your free copy of iMS POST-SE Server

Stop Query From Caching

2001-02-08 Thread Josh R
I have a page that calculates the shipping method after a person updates their cart. It looks in their shopping cart database table for the ship method, recalculates then redirects to the cart page. The problem is that sometimes the database gets changed, but the query runs off of "old" data.

RE: repeating maling list messages

2001-02-08 Thread Terry Bader
are you hitting "REply to All"?? this would send an email back to yourself and the list... that could be one reason... Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL PROTECTED] (757)581-5981 -

RE: Mutiple CFTalk messages

2001-02-08 Thread David Livingston
Me too. Dave -Original Message- From: Windle, Kevan [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 08, 2001 3:47 AM To: CF-Talk Subject: OT: Mutiple CFTalk messages I'm getting multiple copies of postings today. Is it just me?

Duplicates

2001-02-08 Thread Gieseman, Athelene
Is there something wrong with my account on this list if I keep getting duplicate (well more like quadruplicate) messages? If there's something I'm doing wrong, please let me know so I can fix it. The great thing about the list is that it's so active. But when the messages are sent over and

list of page queries

2001-02-08 Thread stas
Hello, does CF create a list of queries that are run on a page? I am using cf_dump for debugging like this: cfset scopelist = "application,session,form,request,url" cfloop list="#scopelist#" index="i" cf_dump v = #i# /cfloop I would like not to have to add queries to #scopelist#

wierd oracle error

2001-02-08 Thread John Anderson
We recently went from native drivers to odbc. I currently have a wierd error that is occurring: ODBC Error Code = 37000 (Syntax error or access violation) [Oracle][ODBC][Ora]ORA-01460: unimplemented or unreasonable conversion requested SQL = "ep_upd_Employment" Has anyone seen this before?

  1   2   >