Hello,
I have a problem in following sub:
VB Code:
  1. Private Sub Form_KeyPress(KeyAscii As Integer)
  2.   If KeyAscii = 19 Then
  3.     If cmdSave.Enabled = True Then
  4.       cmdSave_Click
  5.     End If
  6.     MsgBox KeyAscii  'Trying to figure out this....
  7.   Else
  8.     mbDirty = True
  9.     Call CheckButtons
  10.   End If
  11.  
  12. End Sub

I have ctrl+s key combination saving current recordset on the form. Everything is fine except when focus is on ComboBox and I try ctr+s, it brings item in ComboBox list starting with letter "s".
I tried to put similar code in keyup event, but result is the same.
Please help.

Deki PA