You have stated a condition but not exactly what you would like. I assume
you want all text entered to be converted and stored in upper case. If this
is correct, one method is to add code to the after update event of your text
boxes like:
Me.txtMyText = UCase(Me.txtMyText)
You can also trap keystrokes and change the Ascii value
Private Sub txtMyText_KeyPress(KeyAscii As Integer)
If KeyAscii >= Asc("a") And KeyAscii <= Asc("z") Then
KeyAscii = KeyAscii - 32
End If
End Sub

Signature
Duane Hookom
MS Access MVP
> Ok so how do I fix my original problem?
>
[quoted text clipped - 42 lines]
>> >> >> > you
>> >> >> > click out of the field it goes back to upper case. Any ideas?
Secret Squirrel - 15 Oct 2005 05:54 GMT
You assumed correct! Thank you very much for your help! I greatly appreciate
it.
> You have stated a condition but not exactly what you would like. I assume
> you want all text entered to be converted and stored in upper case. If this
[quoted text clipped - 56 lines]
> >> >> >> > you
> >> >> >> > click out of the field it goes back to upper case. Any ideas?