RE: Capitalize first characters

2001-09-13 Thread thanh . nguyen
Thanks all. I got it. :) -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 11:21 AM To: CF-Talk Subject: RE: Capitalize first characters -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday

RE: Capitalize first characters

2001-09-13 Thread Joshua Miller
o: CF-Talk Subject: RE: Capitalize first characters There's an example in an article that discusses User Defined Functions that does just what you want. You can find the article at http://www.sys-con.com/coldfusion/articleprint.cfm?id=270. HTH. d -Original Message- From: [EMAIL

Re: Capitalize first characters

2001-09-13 Thread Don Vawter
You can easily do this using a style tag: .cap{ text-transform : capitalize; } and then use blah blah Don Vawter www.cyberroomies.com [EMAIL PROTECTED] - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, September 13, 2001 11:20 AM Sub

RE: Capitalize first characters

2001-09-13 Thread Ronald-Thomas
Check here... they have some nifty functions that should help you get started http://www.cflib.org/library.cfm?ID=1 ronald-thomas w: wildminds.net c: 512.426.4233 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 12:21 PM To

RE: Capitalize first characters

2001-09-13 Thread Alex Santantonio
#UCase(Left(word, 1))##Right(word, Len(word) - 1)# - this will capitalize the first letter and leave the rest the same. Add an LCase() around the second CF Variable to lower case those letters. Alex Santantonio Lead Developer Macromedia Coldfusion 5 Certified Professional Macromedia Certified We

RE: Capitalize first characters

2001-09-13 Thread Adkins, Randy
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 1:21 PM To: CF-Talk Subject: Capitalize first characters Hi all, I'm just starting to learn coldfusion and I'm looking for a function or a way to capitalize the first character of w

RE: Capitalize first characters

2001-09-13 Thread Baskin, Dave
There's an example in an article that discusses User Defined Functions that does just what you want. You can find the article at http://www.sys-con.com/coldfusion/articleprint.cfm?id=270. HTH. d -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, Sept

RE: Capitalize first characters

2001-09-13 Thread Kelly Matthews
there are custom tags on allaire's website that can do this go check out the developers section. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 1:21 PM To: CF-Talk Subject: Capitalize first characters Hi all, I'm just starting to