Isaac
Lifelong Learner
- Local time
- Yesterday, 19:49
- Joined
- Mar 14, 2017
- Messages
- 10,935
I think he's use a control's AfterUpdate event also but when you manipulate a control using VBA, that control's events don't fire so that may be what is causing the disconnect. In that case, the code needs to move to the form's BeforeUpdate event or you need to do something like separate the code you want to force to run into a separate procedure and call it from the two events.
this is one thing I hate when going in between access and excel vba. in excel, programmatically modifying a control does fire its events, unless you set Application.EnableEvents=False (then set back to true afterwards), gets really thorny!
so it's an annoying difference and i wonder why MS did that differently between the two