We use an event like this to convert keystrokes to uppercase:
It does not seem to work for ComboBoxes in Datasheet mode. The event fires, but keystrokes show up as lower case.
Textboxes work in datasheet and Form mode. Changing the subform to Form view also works. The same behaviour exists in 2003 and 2016. I can replicate the bug with a trivial Combo with a list of data values.
Is this just a bug?
Code:
Private Sub cboTest_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub
Textboxes work in datasheet and Form mode. Changing the subform to Form view also works. The same behaviour exists in 2003 and 2016. I can replicate the bug with a trivial Combo with a list of data values.
Is this just a bug?