I have a textbox in a userform and would like to get the 'name' of the textbox upon the AfterUpdate event executes.
At the moment I am using
but as the focus has changed to the next control in the TabIndex, it returns the name of this control rather than the textbox that has just lost focus.
TIA
At the moment I am using
Code:
ActiveControl.Name
TIA