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 |
 |
| |
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 |
 |
| |