xavier.batlle
Active member
- Local time
- Today, 09:30
- Joined
- Sep 1, 2023
- Messages
- 197
After some tests, I think the easiest way to solve the OP's issue is what @Edgar_ has suggested:
For example:
I suggest you simply set focus to another control from the main form before you set focus to txtProductCode.
For example:
Code:
Public Sub txtProductCode_AfterUpdate()
...
Me.txtProductCode = Null
Me.CboCancelledInvoicedata.SetFocus
Me.txtProductCode.SetFocus
End Sub
Last edited: