If you don't wish to force the user to enter in all caps, you can easily add code in the AfterUpdate event behind the field to do it for you:
Me!txtEntry.Value = UCase(Me!txtEntry.Value)
Where txtEntry is the field you are setting to uppercase.
Hope this helps,
Tom