RE: FAQ POSTED: New CF5 Partner Hosting License

2001-04-28 Thread Seva Petrov
platform in many markets and new versions offer tangible benefits (I'm not talking about consumer Windows). On the other hand, when deciding to select a platform for a fresh deployment, Windows loses a lot of its appeal given currently available alternatives. And so does ColdFusion. Cheers, Seva Petrov

RE: FAQ POSTED: New CF5 Partner Hosting License

2001-04-28 Thread Seva Petrov
the goodwill nor sufficiently unique technology to take that risk. Cheers, Seva Petrov ~~ 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

RE: FAQ POSTED: New CF5 Partner Hosting License

2001-04-28 Thread Seva Petrov
/server/features/application.asp Cheers, Seva Petrov ~~ 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/ Unsubscribe: http

RE: CF Triggers?

2001-04-26 Thread Seva Petrov
Well, you could trigger a script that calls a template on a remote web server using HTTP. Not sure how you'd do this with Oracle, but xp_cmdshell and Perl would be all you need on a SQL Server setup. Seva Petrov -Original Message- From: Bob Silverberg [mailto:[EMAIL PROTECTED]] Sent

RE: cfincluded select box doesn't work

2001-04-19 Thread Seva Petrov
Allen, This probably has nothing to do with your problem, but have you checked that the include is not part of a cfsetting enablecfoutputonly="yes" block? If it's the case, you might want to put your cfinclude inside a cfoutput tag pair. HTH, Seva Petrov -Original Message-

RE: a week before...

2001-04-19 Thread Seva Petrov
Brook, cfset then = DateAdd("d", -7, now) HTH, Seva Petrov -Original Message- From: Peter Benoit [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 2:19 PM To: CF-Talk Subject: a week before... Hi, I make a date using: cfset now = #CreateDate(url.year,

RE: How to tell if a QUERY UPDATE fails.

2001-03-31 Thread Seva Petrov
ure others have similar functionality. Cheers, Seva Petrov -Original Message- From: Arden Weiss [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 31, 2001 10:39 AM To: CF-Talk Subject: How to tell if a QUERY UPDATE fails. I know how to tell if a QUERY SELECT fails -- recordcount

RE: Correct Me if im wrong. PLEASE!

2001-03-29 Thread Seva Petrov
Jay, Try the query with DISTINCT: SELECT ContestantID FROM ResultsManager GROUP BY ContestantID HAVING COUNT (DISTINCT EventID) = 2 Cheers, Seva Petrov -Original Message- From: Jay Patton [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 29, 2001 11:37 AM To: CF-Talk Subject

RE: T-SQL and single quote lists

2001-03-28 Thread Seva Petrov
FROM #ttbl_vals WHERE which = 'cust') AND txtMEP = @mepid DROP TABLE #ttbl_vals HTH, Seva Petrov -Original Message- From: Jeff Gombala [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 28, 2001 6:43 PM To: CF-Talk Subject: T-SQL and single quote

RE: CFFTP

2001-03-22 Thread Seva Petrov
What platform? You can forget about it on Solaris. NT implementation is about as "solid" as anything Allaire has produced. Seva Petrov -Original Message- From: paul smith [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 22, 2001 2:09 PM To: CF-Talk Subject: CFFTP An

RE: database error

2001-03-21 Thread Seva Petrov
Sebastian, SQL Server has an 8060 byte limit on the size of a row, excluding text, image and some other fields that are stored in separate pages. You might want to either reduce the size of some of the datatypes in the table, if possible, or break the table up into smaller entities. HTH, Seva

Re: CFHTTP

2001-02-15 Thread Seva Petrov
Martin, Not sure if this is going to help with resolving the "connection failure" problem, but you can write CFHTTP.ResponseHeader to a file with cffile, then read the file to get the debugging info you need. It is text, although for some reason CF doesn't see it as such. Best, S

RE: Parsing Headache (Removing Multiple Images)

2001-02-14 Thread Seva Petrov
Steve, Why not try something easier: cfscript output = Trim(CFHTTP.FileContent); output = REReplaceNoCase(output, "img[^/]+[/]?", "", "all"); /cfscript Best, Seva Petrov Senior Developer TheSquare.com -Original Message- From: Steve Reich [m

RE: SQL Convert and joining on date

2001-02-14 Thread Seva Petrov
Duane, Assuming you use SQL Server, you could do the following: convert(varchar(10), t1.datefield, 110) That should produce a result in the "mm-dd-" format. Best, Seva Petrov Senior Developer TheSquare.com -Original Message- From: Duane Boudreau [mailto:[EMAIL

RE: Brain Fart

2001-02-02 Thread Seva Petrov
your authority."); } } /script form name="myform" input type="text" name="mytext" onkeyup="checkLen(this)" /form Best, Seva Petrov Senior Developer TheSquare.com -Original Message- From: Patricia Lee [mailto:[EMAIL PROTECTED]] Sent:

RE: Javascript/Netscape Problem

2001-01-24 Thread Seva Petrov
Paul, Try: popupWin = window.open(url, name, "resizable,location,scrollbars,width=500,height=500,innerWidth=500,innerHeig ht=500,left=75,top=75"); That should produce a 500x500 window in IE and Netscape. Best, Seva Petrov Senior Developer TheSquare.com -Original Message-

RE: Studio and PHP?

2001-01-19 Thread Seva Petrov
CF Studio 4.5 supports PHP syntax highlighting. I've used it to write PHP code and haven't seen any missing functions/language constructs. You could probably use CF projects with .php files as well, with source control and the other nice features. Seva Petrov Senior Developer TheSquare.com T

RE: Regular Expression in CF

2000-12-28 Thread Seva Petrov
If you know that your script block will not contain '', you might do: script[^]*[^]*/script Not extremely helpful, I know. What would do the trick is something like Perl's stingy matching: script[^]*.*?/script Does anyone know if CF supports something similar? Cheers, Seva Petrov