Capitalization code Help - Muriuki

18-Aug-07 06:56:00
Hi any one with an Idea how to write code that capitalizes the first letter
of every word and one that capitalizes the whole statement. Very much
appreciated
button
 
 

Capitalization code Help - Danie

18-Aug-07 08:52:01
The StrConv function should be what you are looking for.  Look it up in the
help file for all the details.
--
Hope this helps,

Daniel P
button
 

Capitalization code Help - Steve

18-Aug-07 02:08:00
UCase() will convert a string to all upper case.

Alternatively you can use the StrConv() Function:

StrConv(MyString,vbUpperCase) 'convert to upper case
StrConv(MyString,vbProperCase) 'capitalize first character of each word

Steve
button
 
AttachDSNLessTable