DavidW said:
I am learning
Where and how do you use this
It's a function. Where you would use it is any place where changing the case of
a string to proper case would be useful. You could use it in a SELECT query to
display a field in proper case without altering the base data.
SELECT strConv([SomeField],3) AS SomeAlias FROM SomeTable
You could use it in an UPDATE query to change the data that is stored in a table
to proper case.
UPDATE SomeTable SET [SomeField] = strConv([SomeTable]![SomeField],3)
You could use it in the ControlSource of a TextBox on a form or report to
display a field value in proper case.
=strConv([SomeField],3)