Trying to get words in text box to appear with each 1st letter capitalised -
I used to be able to do this in Dataease.........
On the Form's control's AfterUpdate event code:
Me![ControlName] = StrConv([ControlName],3)
Note: this will incorrectly capitalize some words which contain more
than one capital, i.e. O'Brien, MacDonald, IBM, Jones-Smith, ABC,
etc., and incorrectly capitalize some words that should not have any
capitals, or whose capitaliztion depends upon usage, such as e. e.
cummings, abc, van den Steen.
Then some names can be capitalized in more than one manner, depending
upon personal preference, i.e. O'Connor and O'connor, McDaniels and
Mcdaniels, etc. are both correct.
You can create a table of exceptions and have the code use DLookUp
with a message if one of the exception words is found.