We use an event like this to convert keystrokes to uppercase:
Private Sub cboTest_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub
It does not seem to work for ComboBoxes in Datasheet mode. The event fires, but keystrokes show up as lower case.
Textboxes work...