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, 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 words in a string.  Can this
be done?  Can someone help me with this?  
 
Thanks



~~
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@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Capitalize first characters

2001-09-13 Thread Joshua Miller

I believe there's a UDF on www.cflib.org that does just that.

Joshua Miller
Web Development::Programming
Eagle Technologies Group, Inc.
www.eagletgi.com
[EMAIL PROTECTED]

-Original Message-
From: Baskin, Dave [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 13, 2001 2:12 PM
To: 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 PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 13, 2001 10:21 AM
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 words in a string.  Can this
be done?  Can someone help me with this?

Thanks



~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



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
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 words in a string.  Can this
> be done?  Can someone help me with this?
>
> Thanks
>
> 
~~
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@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



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: 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 words in a string.  Can this
be done?  Can someone help me with this?

Thanks


~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



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 Web Site Developer
[EMAIL PROTECTED] 
www.doceus.com


-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 words in a string.  Can this
be done?  Can someone help me with this? 

Thanks


~~
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@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



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 words in a string.  Can this
be done?  Can someone help me with this?  
 
Thanks


~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



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, September 13, 2001 10:21 AM
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 words in a string.  Can this
be done?  Can someone help me with this?  
 
Thanks


~~
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.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



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 learn coldfusion and I'm looking for a function
or a way to capitalize the first character of words in a string.  Can this
be done?  Can someone help me with this?  
 
Thanks


~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists