RE: Help, fresh eyes needed!

2002-03-22 Thread Kwang Suh
get rid of the semicolon. Also, FYI, you don't need to name cfqueries. Just one less thing to think about. -Original Message- From: Jeff Fongemie [mailto:[EMAIL PROTECTED]] Sent: Friday, March 22, 2002 7:04 PM To: CF-Talk Subject: Help, fresh eyes needed! Hello cftalk, Too long of

RE: TextArea Input

2002-03-20 Thread Kwang Suh
The carriage return and tab you have after the first textarea tab is showing up on the screen. You need to do this: #GetText.Text# -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 8:34 AM To: CF-Talk Subject: TextArea Input I have

RE: CFDJ Awards are out

2002-03-14 Thread Kwang Suh
I am very surprised that ColdFusion Server5 was voted the best web development tool. Talk about a biased audience :) -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 5:57 PM To: CF-Talk Subject: CFDJ Awards are out I see CFDJ has publish

RE: SQL help please

2002-03-14 Thread Kwang Suh
Yeah, I ended up using a cursor to do it. Thanks Bill. -Original Message- From: Bill Grover [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 6:01 AM To: CF-Talk Subject: RE: SQL help please I'm not sure you can do it with a simple select statement. If I understand what you wa

RE: SQL Pervasive and Cold Fusion??

2002-03-07 Thread Kwang Suh
Good timing.. Pervasive SQL is your run of the mill SQL database server. The clien t utility is a complete rip-off o f Enterprise Manager. There's an ODBC driver for it and it uses standard SQL syntax, so I c an't see why you CF wouldn't "just work" with it. -Original Message- From: ke

RE: Slow CF response times?

2002-03-05 Thread Kwang Suh
I dunno, worked super duper fast for me :) -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 4:20 PM To: CF-Talk Subject: Slow CF response times? Hi all, I'm getting slow response times from CFM templates on a production se rver. Many of these

RE: Developers Exchange... How *could* they!?

2002-03-04 Thread Kwang Suh
They removed the advanced search by author :) -- Robert wrote: > Too bad they still haven't fixed the advanced > search so that you can search by author. I noticed that as well. I'm curious to hear this from Macromedia: wh at did you guys do to make such a big change in performance? --Matt

RE: Developers Exchange... How *could* they!?

2002-03-02 Thread Kwang Suh
Sons a bitches!! That's it, I'm going to throttle my bandwidth down to 56k JUST to feel nolstagic! :) -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 02, 2002 5:25 PM To: CF-Talk Subject: Developers Exchange... How *could* they!? For two days n

RE: SQL trickyness

2002-02-21 Thread Kwang Suh
You'll probably have to do some subqueries to get the min, max and id values first, then get the tiptitle. -Original Message- From: James Sleeman [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 8:31 PM To: CF-Talk Subject: RE: SQL trickyness It goes away but it won't give

RE: SQL trickyness

2002-02-21 Thread Kwang Suh
Whenever you use aggregate functions in SQL, you need to add a group by clause that contains the fields that you're not aggregating on. That would be stuff in your select and in the order by. So, add a "group by Tip Title" before the order by and your error should go away. -Original Messa

RE: CFFILE vs database for logging

2002-02-21 Thread Kwang Suh
Well, I always find CFFILE to be pretty freaking slow, so I'd go with the database log. -Original Message- From: Kay Smoljak [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 8:15 PM To: CF-Talk Subject: CFFILE vs database for logging I'm working on a site where a number of

RE: Not Rounding Decimals

2002-02-20 Thread Kwang Suh
You can easily turn that code into a nice UDF and upload it to cflib. org :) -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 9:29 PM To: CF-Talk Subject: Re: Not Rounding Decimals > We have some numbers to display that have 5 decimal

RE: Query Execution Time: CF vs. SQL Plus

2002-02-20 Thread Kwang Suh
Do you have a large recordset coming back? If so, try playing around with the blockfactor attribute. Also, try moving the query to a stored pr oc, and see if that makes a difference. -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 1

RE: Deleting Row from Array

2002-02-15 Thread Kwang Suh
I'm fairly certain that arrays are much, much faster than lists. Lis ts are nothing but strings, and I can't see how looking for a user defined delimiter character in a list could be faster than a system defined delimiter in an array. -- In CF lists are much faster than arrays. You can acces

RE: cfqueryparam - order of where/and

2002-02-14 Thread Kwang Suh
I'm fairly certain that SQL Server processes top down. Oracle used t o process them bottom up. -Original Message- From: Tyler M. Fitch [mailto:[EMAIL PROTECTED]] Sent: February 14, 2002 10:15 AM To: CF-Talk Subject: RE: cfqueryparam - order of where/and Actually, The where clause proc

RE: WDDX

2002-02-13 Thread Kwang Suh
Oh, there's nothing wrong at all with object serialization. There's lots of good uses for it. And it's not difficult to map object data with a relational store. But, there's a camp out there that think relational databases are obs olete because of serialization. Nutsos. I definitely agree wi

RE: WDDX

2002-02-13 Thread Kwang Suh
This is funny, because there is a non-unsizeable camp in the OO world that would just love to ignore databases and serialize all their objects a nd their data. Yum yum. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: February 13, 2002 3:50 PM To: CF-Talk Subject: RE

RE: How do u add colums in SQL query and do a WHERE on the new column

2002-02-13 Thread Kwang Suh
What was the error message you were getting? IIRC, you can't use ali ased columns in your where clause, so you need to put your whole computati on into your where clause as well. How's that for code reuse :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Feb

RE: Same Stat Question...pleaaaaaaaase help

2002-02-13 Thread Kwang Suh
You could call the SP using a trigger instead of using CF to call it. Might improve performance a bit. But if you really do want real-time, that 's the price you're gonna have to pay. -Original Message- From: remi39 [mailto:[EMAIL PROTECTED]] Sent: February 2, 2001 2:22 PM To: CF-Talk

RE: Random row from SQL

2002-02-13 Thread Kwang Suh
andom seed. Still not truly rando m but seemed (at the time 4+ years ago) "more" random. --JW Kwang Suh wrote: > You should know that the random function in SQL Server really, real ly > sucks. > Unless you can seed it with a number that changes constantly every ti > m

RE: Random row from SQL

2002-02-13 Thread Kwang Suh
You should know that the random function in SQL Server really, really sucks. Unless you can seed it with a number that changes constantly every ti me before you call the function, you'll get lots of unrandom numbers. -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]

RE: WDDX

2002-02-13 Thread Kwang Suh
WDDX consists of two things: An XML DTD that describes various data constructs that are commonly u sed. A set of tags and functions, objects, methods, etc with which one can manipulate data using the WDDX XML DTD. So when people say they're "using WDDX", they're actually using the b uilt-in int

RE: Cfcontent for downloads and redirection

2002-02-12 Thread Kwang Suh
You could show the thank you page first, then redirect that page to t he page with the automatic download. That's how most places do it. -Original Message- From: Martin P. Cadirola [mailto:[EMAIL PROTECTED]] Sent: February 12, 2002 9:28 PM To: CF-Talk Subject: Cfcontent for downloads and

RE:

2002-02-09 Thread Kwang Suh
ect box :) -Original Message- From: Kwang Suh [mailto:[EMAIL PROTECTED]] Sent: February 9, 2002 10:10 PM To: CF-Talk Subject: RE: mailto:[EMAIL PROTECTED]] Sent: February 9, 2002 2:57 AM To: CF-Talk Subject: SomeItem SomeOtherItem - Thanks to

RE:

2002-02-09 Thread Kwang Suh
Try using the onChange event on the select box. Dunno why you're usi ng the onclick event. -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: February 9, 2002 2:57 AM To: CF-Talk Subject: SomeItem SomeOtherItem - Thanks to anyone with a

RE: CFStoredProc cfsqltype="cf_sql_Date" doesn't work with SmallDateTime SQL Type...Why?

2002-02-07 Thread Kwang Suh
Try using CF_SQL_TIMESTAMP. -Original Message- From: Gary Ashbaugh [mailto:[EMAIL PROTECTED]] Sent: February 7, 2002 12:38 PM To: CF-Talk Subject: CFStoredProc cfsqltype="cf_sql_Date" doesn't work with SmallDateTime SQL Type...Why? When I use cf_sql_Date for the cfsqltype with in my cfs

Re: Best way to store credit cards in database?

2002-01-27 Thread Kwang Suh
Hey, I'm not trying to be hard on ya. But this is a big issue. Afte r all, even Microsoft now wants to actually care about security :) - Original Message - From: "Bill Davidson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, January 27, 2002 9:03 PM Subject: Re: Be

Re: NOT and ~ operators

2001-12-03 Thread Kwang Suh
It is the ~ operator. The SQL Server NOT is used in SQL like "WHERE field NOT IN (list)" - Original Message - From: "Gyrus" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, December 01, 2001 2:53 PM Subject: NOT and ~ operators > I'm used to using the NOT operator

RE: asp vs. cf

2001-11-30 Thread Kwang Suh
Holy flark, CF5 totally destroyed the competition. http://www.zdnet.com/products/stories/reviews/0,4161,2764421,00.html I think it was PCWorld who did the bechmarks during the 4.x era where CF was #3. They updated their benchmarks when 5 came out and it blew the rest of them away. I haven't s

Re: Quotes?

2001-11-29 Thread Kwang Suh
> First, I need to know if CF or HTML cares if attributes are single-quoted or > double quoted? CF doesn't care. HTML doesn't care. BUT, XHTML does care. So, use double quotes when doing HTML. > > What about: > > > and: > > > Is there a "correct" way to code quoted strings? Just be consist

Re: Hiding Paths

2001-11-29 Thread Kwang Suh
Well, if you use Apache, you might be able to use rewrite rules for this. - Original Message - From: "Jay - WC" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, November 29, 2001 2:28 PM Subject: Hiding Paths > We want to serve up some audio files via a link but wou

Re: SQL Syntax

2001-11-29 Thread Kwang Suh
Date handling between the two is quite different. Also, SQL Server has T-SQL, which has a vast library of somewhat useful functions. Also, I don't think Access has CASE.. WHEN.. THEN.. ELSE.. END - Original Message - From: "Bryan Love" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]

Re: 10 Step Program

2001-11-29 Thread Kwang Suh
client vars... client vars client vars good. - Original Message - From: "Won Lee" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, November 29, 2001 10:18 AM Subject: 10 Step Program > Hi my name is Won Lee and I'm addicted to session variables. > > In an at

RE: Java and Coldfusion 4.5 using memory

2001-11-25 Thread Kwang Suh
v.com/ -Original Message- From: Kwang Suh [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 25, 2001 9:57 PM To: CF-Talk Subject: Re: Java and Coldfusion 4.5 using memory You can ask the JVM nicely to perhaps consider doing some garbage collection, which might maybe sorta destroy the o

Re: Java and Coldfusion 4.5 using memory

2001-11-25 Thread Kwang Suh
You can ask the JVM nicely to perhaps consider doing some garbage collection, which might maybe sorta destroy the object. There's no guaratees though :) - Original Message - From: "Kinley Pon" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 25, 2001 9:47 AM S

Re: Complete lack of locking...

2001-11-22 Thread Kwang Suh
of a framed document > loading two windows simultaneously. The extra code necessary to check for a > multi-request session is going to be significantly less than the code required > to parse and execute the tags. > > > > - Original Message - > From: "Kwang Suh"

Re: Complete lack of locking...

2001-11-22 Thread Kwang Suh
ck for a > multi-request session is going to be significantly less than the code required > to parse and execute the tags. I think there is more involved that just that. Suffice it to say, when I hear the words "single-threaded" anything in any language, I cringe. > >

Re: Complete lack of locking...

2001-11-22 Thread Kwang Suh
Not urban legend. We had the dev server here on "single threaded sessions". One user: good speed Two users: average speed Three users: slow Four users: very slow Five users: cra This was bad. Very bad. - Original Message - From: "Keith Meade" <[EMAIL PROTECTED]> To: "CF-

Re: Single Threaded Sessions

2001-11-21 Thread Kwang Suh
Yes, it slows the server down to a crawl. - Original Message - From: "Robert Everland" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, November 21, 2001 1:45 PM Subject: Single Threaded Sessions > Does this option in CF5 cause the server to slow down in any way.

Re: Complete lack of locking...

2001-11-21 Thread Kwang Suh
Yup. Have fun. - Original Message - From: "Steven Monaghan" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, November 21, 2001 1:39 PM Subject: Complete lack of locking... > I inherited an application that uses session variables and has no CFLOCK > tags in it at a

Re: Verity Search Problem - Solution

2001-11-21 Thread Kwang Suh
> Further Questions: > 1. Why does the Verity Collection *ONLY* allow "custom1" and "custom2"? I > needed two more variables Use a delimiter to put more than one column of information into these two variables. ~~ Get the mailserver that powers this

Re: Stored Procedure Question

2001-11-20 Thread Kwang Suh
Hmm. Try using CF_SQL_TIMESTAMP. I've NEVER been able to get CF_SQL_DATE to work properly. - Original Message - From: "Bruce Sorge" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, November 20, 2001 1:27 PM Subject: Stored Procedure Question > OK, I have been using

Re: SSL

2001-11-20 Thread Kwang Suh
when you needed the ssl certificate you would do > https://www.mydomain.com/something > > were something actually is pointing to the other sites web folder so you can > make any page secured. or you can point it to one folder. > > Troy Montour > Vampires Inc > > > -

Re: SSL

2001-11-20 Thread Kwang Suh
01 10:29 AM Subject: RE: SSL > I believe that it's only valid for one FQDN. > > Jeff Garza > Lead Developer/Webmaster > Spectrum Astro, Inc. > 480.892.8200 > [EMAIL PROTECTED] > http://www.spectrumastro.com > > > > -Original Message- > From

OT: SSL

2001-11-20 Thread Kwang Suh
Sorry for the OT question: Is one SSL certificate valid for one whole domain, or is it valid only for one fully qualified domain name? i.e., is it valid for *.mydomain.com, or only mysite.mydomain.com? ~~ Get the mailserver that powers this list

Re: Passing Form Variable forward

2001-11-19 Thread Kwang Suh
disabled fields do not get submitted - Original Message - From: "Angel Stewart" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, November 19, 2001 5:13 PM Subject: RE: Passing Form Variable forward > action="timeentry_editchargeinfo_action.cfm?MainID=#Form.MainID#&P

Re: Session and Client Variables

2001-11-15 Thread Kwang Suh
--- Freddy <[EMAIL PROTECTED]> wrote: > Let me see. A scalable app that uses session > vaiables? Try an application that > delivers personalized content. Store a cookie that > logs the user in on entry to > the site. It then retrieves a list of links, images, > and pertinent user info > that is st

Re: Session and Client Variables

2001-11-15 Thread Kwang Suh
> Curious - would switching from session vars to > client vars entail > a major rewrite? Am I dumb in thinking you'd just do > a search for > "session." and implement the client variable code? Well, of course it depends. But since most people wrap their session stuff around locks, and other vari

Re: Session and Client Variables

2001-11-15 Thread Kwang Suh
- Original Message - From: "Freddy" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, November 15, 2001 5:16 PM Subject: Re: Session and Client Variables > Kwang Suh wrote: > > > > My heart goes out to you! You so

Re: Session and Client Variables

2001-11-15 Thread Kwang Suh
crites turn you away from the tool that > delivered you from the hands of hidden form fields and time consuming > database calls. Why would I need hidden form fields and database calls when I'm using client variables? > > Your friend in CF Programming, > > Marianne

RE: Session and Client Variables

2001-11-14 Thread Kwang Suh
Yikes! The key differences between client and session variables are: session variables must be locked, or have automatic locking set. client variables can be stored in a database, allowing much better scalability with your apps. client variables can only store "simple" datatypes. And yes, clien

RE: Flash Kit problems

2001-11-14 Thread Kwang Suh
The "all" collection is exclusive to IE. You'll have to rewrite the code to get it to work in Nutscrape. -Original Message- From: John Dowdell [mailto:[EMAIL PROTECTED]] Sent: November 14, 2001 5:18 PM To: CF-Talk Subject: RE: Flash Kit problems At 5:41 AM 11/14/1, Robert Everland wrot

Re: Where to get additional WDDX methods?

2001-11-13 Thread Kwang Suh
Oh yeah, I should add that the methods were in Javascript - Original Message - From: "Kwang Suh" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, November 13, 2001 4:19 PM Subject: Where to get additional WDDX methods? > I remembe

Where to get additional WDDX methods?

2001-11-13 Thread Kwang Suh
I remember back in the mists of time someone had created some extended WDDX methods. One of them was for sorting a WDDX packet. Anybody know where I can get it? TIA. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http

Re: New Netscape Browser does not do some JS

2001-11-09 Thread Kwang Suh
What, a Netscape browser that doesn't work?!?!?! :) - Original Message - From: "Bruce Sorge" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, November 09, 2001 3:56 PM Subject: Re: New Netscape Browser does not do some JS > For some reason, my message was truncated.

RE: Escaping Quotes

2001-10-27 Thread Kwang Suh
Use the function HTMLEditFormat. This function will automatically replace all the "dangerous" characters for you. -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: October 26, 2001 1:25 PM To: CF-Talk Subject: Escaping Quotes I am outputting a string into a form fi

RE: IIS weird error (I think)

2001-10-26 Thread Kwang Suh
You may be running out of HD space on your machine. Also, check your database box. I've had weird stuff happen on the web servers if the database box goes down while the web servers are asking for queries. -Original Message- From: Kay Smoljak [mailto:[EMAIL PROTECTED]] Sent: October 26,

RE: Database Design Question

2001-10-05 Thread Kwang Suh
If you have 3 tables, then there is no performance impact. I'd keep it normalized. -Original Message- From: Koo Pai Lao [mailto:[EMAIL PROTECTED]] Sent: October 5, 2001 4:54 PM To: CF-Talk Subject: Database Design Question ok, this is just a small example of what I am working with. I

Re: Storing Credit Cards

2001-10-05 Thread Kwang Suh
e are other solutions > that will be reasonably secure. Face it - any credit cards stored on a > server are NEVER SAFE! That's been talked about here time and time again. > > Dave > > - Original Message - > From: "Kwang Suh" <[EMAIL PROTECTED]&g

Re: Storing Credit Cards

2001-10-04 Thread Kwang Suh
Use someone else's. - Original Message ----- From: "Kwang Suh" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, October 04, 2001 9:23 PM Subject: Re: Storing Credit Cards > Because, in order to do a valid CC transaction, one needs:

Re: Storing Credit Cards

2001-10-04 Thread Kwang Suh
id credit card numbers and > use them > > If you munge (encrypt) the cc numbers with a key - displace the owner name > and the expiration date in various locations, why would that be any less > secure??? > > Educate me here . . . > > Dave > > > > > ---

Re: Stored Procedure Question

2001-10-04 Thread Kwang Suh
To add to this, you can also create multiple querysets from one query. Just do: In fact, you can also do: Just so you can drive other developers crazy :) - Original Message - From: "Jared Stark" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, October 0

Re: Storing Credit Cards

2001-10-04 Thread Kwang Suh
I should point out that this is a very simple form of encryption (call it whatever you want, it's still encryption), and EASILY hackable. How long do you think it would take a computer to do brute-force key calculation on such a simple key, especially considering that CC numbers have patterns in

RE: Dealing with nulls while adding two columns together

2001-10-01 Thread Kwang Suh
A union query is not appropriate in this situation. In SQL Server, you can use isNull(column, 0). This will turn any null into a zero. Thus, your join will then work properly. So, in your select clause, you can have something like SELECT isNull(a.column, 0) + isNull(b.column, 0) AS columntota

RE:

2001-09-30 Thread Kwang Suh
It is also possible to write: #name# The single quotes is equivalent to DE(). I'm not sure if this is any faster. Overall though, IIF always seems to be incredibly slow. -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED]] Sent: September 30, 2001 11:26 AM To: CF-Talk Subj

RE: CFGRID problems in CF5 (need workaround)

2001-09-26 Thread Kwang Suh
I have taken a look at some of those grids. I'd just extend one of those :) Ahh, OO programming. --- Dave Watts <[EMAIL PROTECTED]> wrote: > > I'm writing a new grid. A super grid. A grid > with every > > function I've wanted but Allaire has never put in. > > > > I now possess enough Java

RE: CFGRID problems in CF5 (need workaround)

2001-09-25 Thread Kwang Suh
That's it. I'm writing a new grid. A super grid. A grid with every function I've wanted but Allaire has never put in. I now possess enough Java knowledge to do this. It shall be mine. Oh yes, it shall be mine. And, I promise to fix it's bugs. :) -Original Message- From: Snyder, Jaso

RE: Setting up a knowledgebase

2001-09-25 Thread Kwang Suh
Yes, IMHO, it is a good idea to assign keywords. This is essential "meta-data" that you're referring to. A good example of why to have this is so that you can have synonyms for searching. For instance, you can use keywords like "automobile, four-wheeled vehicle, passenger mover" to describe an

Dynamically creating a datasource

2001-09-17 Thread Kwang Suh
Hello there. Can someone provide an example of dynamically creating a datasource connection in SQL Server to an Access DB? Is this even possible? ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for

RE: Reg Exp help

2001-09-16 Thread Kwang Suh
You don't need to use Reg. Exp. for this. Instead, treat the date as a list, with a delimiter of "/", and use listGetAt() or even getToken() to get the various date parts. -Original Message- From: John Barleycorn [mailto:[EMAIL PROTECTED]] Sent: September 16, 2001 4:47 PM To: CF-Talk Sub

Re: Uses of CFContent??

2001-09-14 Thread Kwang Suh
It is useful if you want to return something like an image from a database, as you can use CFCONTENT to tell the browser that it's an image being shown. It's also useful for transporting data via a gif. --- Koo Pai Lao <[EMAIL PROTECTED]> wrote: > hey guys, I always wanted to use this tag, but w

RE: OT .NET: ActiveX in Disguise? FUD alert

2001-09-14 Thread Kwang Suh
Yes, it is there. I just viewed it. Did you put the URL back together? --- "Brunt, Michael" <[EMAIL PROTECTED]> wrote: > Just a footnote, that page is no longer there!! > > Kind Regards - Mike Brunt > > -Original Message- > From: Jeffry Houser [mailto:[EMAIL PROTECTED]] > Sent: Thursd

Re: grids

2001-09-13 Thread Kwang Suh
Not possible using the CF grid. You could extend that applet though so that it could do this. Or, you could write something in DHTML that does the same thing as the grid. This is quite an undertaking, however. --- "Jones, Becky" <[EMAIL PROTECTED]> wrote: > does anyone know if the fields in th

RE: OT - Software allocation of RAM

2001-09-12 Thread Kwang Suh
This is not a RAM problem. The biggest problem with the Windows 9X series is the amount of HEAP and GDI memory available. The amount is VERY small. These two numbers CANNOT be enlarged. They are hardcoded into the kernal. Every program you have open consumes some of these two resources. Once

RE: SOT (long) Need for Standalone CF

2001-09-09 Thread Kwang Suh
I'm taking a Java course currently; the teacher stated that Java has something like 80% of the server programming market at present. If this is true, MS is going to have a very tough time penetrating the Java's inroads. Also, with Java's RMI, having different OSs on the backend finally seems to

RE: CFLOCK and Session variables

2001-09-07 Thread Kwang Suh
IMHO, I think session, application, server variables should be banished to the depths of hell. I recently wrote an application using just the client, variables, request and caller scopes. Gawd, talk about making life easier! Other than not allowing complex data types in client variables, I woul

RE: RE: inserting e-mail addresses, CFIF isdefined ...

2001-09-04 Thread Kwang Suh
Try this instead: mailto:[EMAIL PROTECTED]"; to="mailto:[EMAIL PROTECTED]"; subject="test"> test CF does not allow you to embed tags like what you have there. Also, the from attribute is required, so even you could embed tags, your code would still blow up if "email" wasn't defined. > -

CFX_HTTP

2001-09-04 Thread Kwang Suh
Does anyone have the documentation for this tag? Thanks in advance. ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusi

Any forums software based on CF-Express?

2001-09-03 Thread Kwang Suh
So, any available? If not, I'm writing one :) ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.c

Re: DHTML-Javascript

2001-08-30 Thread Kwang Suh
Go to http://www.dynamicdrive.com. IIRC, they have a script that creates windows just like that. - Original Message - From: "Steven A. del Sol" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, August 30, 2001 5:38 PM Subject: OT: DHTML-Javascript > Does someone have

OT: XML Questions

2001-08-29 Thread Kwang Suh
So, anyways, I'm creating a DTD for an XML document and have a few questions... I have a vendor that has an address. The address consists of various elements such as street, city, etc. Now then, the address element itself has no attributes or data directly in it. Is it worth having an addres

Re: loop question

2001-08-27 Thread Kwang Suh
Why not use: WHERE AppID IN (#form.appid#)? - Original Message - From: "Jones, Becky" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, August 27, 2001 3:00 PM Subject: loop question > my query below keeps putting an OR after the last appid. > how can i fix that? > t

Re: Dodging page timeout

2001-08-24 Thread Kwang Suh
When calling the page, append a url variable to it called requestTimeOut. Give it a value in seconds. e.g. index.cfm?requestTimeOut=6 - Original Message - From: "Cary Gordon" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, August 24, 2001 5:03 PM Subject: Dodgin

Re: Escaping question

2001-08-24 Thread Kwang Suh
When escaping single quotes, put two single quotes together. When escaping double quotes, put two double quotes together. - Original Message - From: "Jeff Green" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, August 24, 2001 4:31 PM Subject: Escaping question > Hi a

Re: OT: Way Slow web pages

2001-08-23 Thread Kwang Suh
Go to http://www.microsoft.com/data. You can download the latest MDAC there. - Original Message - From: "Bruce, Rodney" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, August 23, 2001 2:17 PM Subject: RE: OT: Way Slow web pages > What are the newest ODBC drivers.

Re: Bug in CF5 (Using CFQUERY to insert data)

2001-08-23 Thread Kwang Suh
As near as I can tell, this is an issue with CF Server v5, not with Studio. CF Server is not a beta product (supposedly :) - Original Message - From: "Bruce Sorge" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, August 23, 2001 1:45 PM Subject: Re: Bug in CF5 (Using C

Re: White space/Stored Procedure/Query/ASP Developer griping

2001-08-22 Thread Kwang Suh
Well, he is full of it :) You probably have some bug somewhere that's hard to track down. - Original Message - From: "C. Hatton Humphrey" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, August 22, 2001 8:30 AM Subject: White space/Stored Procedure/Query/ASP Develop

Re: We've been assimilated...

2001-08-21 Thread Kwang Suh
I'm still waiting for the Microsoft Neural Implant. - Original Message - From: "Joseph Thompson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, August 21, 2001 5:04 PM Subject: Re: We've been assimilated... > At CFHub I have IE at 89.5% and "netscape compatable" at

Re: Stored Procedure Question

2001-08-21 Thread Kwang Suh
Let's see the SP. - Original Message - From: "Bruce Sorge" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, August 21, 2001 4:24 PM Subject: Stored Procedure Question > I have the following code: > > > > > > > > I have the SP on the SQl Server and it works. Ho

RE: Loading extremely large files via CFFILE

2001-08-20 Thread Kwang Suh
Yikes! I don't think this is an appropriate job for ColdFusion. You'll probably have to write something in C/C++ if want something with acceptable performance. -Original Message- From: Matt Lewis [mailto:[EMAIL PROTECTED]] Sent: August 20, 2001 9:07 PM To: CF-Talk Subject: Loading extre

RE: "disappearing queries"

2001-08-19 Thread Kwang Suh
It's in SQL 7.0 and 2000 -Original Message- From: Darryl Lyons [mailto:[EMAIL PROTECTED]] Sent: August 19, 2001 9:59 PM To: CF-Talk Subject: RE: "disappearing queries" In SQL 7.0 or ? -Original Message----- From: Kwang Suh [mailto:[EMAIL PROTECTED]] Sent: Monday, Au

RE: "disappearing queries"

2001-08-19 Thread Kwang Suh
There is a way around this. Look up SET NOCOUNT -Original Message- From: Darryl Lyons [mailto:[EMAIL PROTECTED]] Sent: August 19, 2001 6:47 PM To: CF-Talk Subject: RE: "disappearing queries" Thanks. -Original Message- From: Billy Cravens [mailto:[EMAIL PROTECTED]] Sent: Sa

RE: Hardware Load Balancers

2001-08-09 Thread Kwang Suh
Anandtech is using some Linux software that seems to be working quite well. Read the article here: http://www.anandtech.com/showdoc.html?i=1456 -Original Message- From: Randy Smith [mailto:[EMAIL PROTECTED]] Sent: August 9, 2001 3:34 PM To: CF-Talk Subject: OT: Hardware Load Balancers

RE: Alternative to Verity search?

2001-08-03 Thread Kwang Suh
Less than $300 Doesn't exist. Ultraseek Server is excellent, but costs around $1. Verity does place a (relatively) heavy load on the server. -Original Message- From: Angél Stewart [mailto:[EMAIL PROTECTED]] Sent: August 2, 2001 1:42 PM To: CF-Talk Subject: Alternative to Verity

RE: and E-mail

2001-08-01 Thread Kwang Suh
Nope. -Original Message- From: Carlisle, Eric [mailto:[EMAIL PROTECTED]] Sent: August 1, 2001 11:28 AM To: CF-Talk Subject: and E-mail I'm going to send an e-mail with a text file attached. Then I'm going to delete the file. With the file deletion, I know that I should use . Should I

RE: Random in SQL

2001-08-01 Thread Kwang Suh
The newid function is similar to the createUUID function in CF. It basically uses the MAC address of the network card in your server as a seed. MAC addresses are guarateed to be unique to your network card. Hah, and they say we have privacy. -Original Message- From: [EMAIL PROTECTED

RE: Sort by 1st three letters of month?

2001-08-01 Thread Kwang Suh
nd it works. Of course this calls for having seperate fields for month, day, date. Guy www.guymcdowell.com >-- > >Date: Wed, 01 Aug 2001 00:33:11 -0600 >From: "Kwang Suh" <[EMAIL PROTECTED]> >Subject: RE: Sort by 1st three letters

RE: Sort by 1st three letters of month?

2001-08-01 Thread Kwang Suh
Cast the text strings to a date within your SQL query. Then, you can easily sort by month. -Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED]] Sent: July 31, 2001 2:23 PM To: CF-Talk Subject: Sort by 1st three letters of month? Ok, I'm an idiot. I have my users putting in te

RE: Recordcount/Query Strangeness..

2001-08-01 Thread Kwang Suh
You replaced a query named citysearch with a simple variable called citysearch. Therefore, citysearch.recordcount ceased to exist. If you change line 6 to , then citysearch.recordcount would still exist. -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: July 31, 2001

RE: another sql question

2001-07-30 Thread Kwang Suh
Below the create statement: @MID int OUTPUT Also, remove the DECLARE @MID INT and the RETURN @MID statements. -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: July 30, 2001 5:35 PM To: CF-Talk Subject: another sql question How would I pass the 'MID' variable from a SQL S

<    1   2   3   4   5   >