To capitalize text already in a table:
UPDATE mytable SET myfield=StrConv(myfield, 3)
To capitalize text as it is being entered in a textbox on a form, put this
code in the BeforeUpdate event of the textbox:
MyTextBox=StrConv(MyTextBox, 3)
Look up the StrConv function in Access Help for more information about
string conversion possibilities.