seeker,
The best idea is to never use "SendKeys" at all. There are multiple ways
to accomplish what you need without using this method which can fail you.
In the case of the text box. If you place a > in the "Format" property of
your text box, when the user exits the text box all charctes will
automatically be displayed as upper case.
You can also place the following line of VBA code in the "After Update"
event of your text box and when the user exits the text box, all characters
will be converted to upper case:
Me.Text2 = UCase(Me.Text2)
Replace the "Text2" with the actual name of your text box control.
-----
HTH
Mr. B
http://www.askdoctoraccess.com/
Doctor Access Downloads Page:
http://www.askdoctoraccess.com/DownloadPage.htm