Events Order in a cbobox

A

AndyEduardo

Thanks for your attention:

I need to know what is the order of the events from a cbobox, I need t
know what events occur between AfterUpdate and LostFocu
 
A

Al Camp

Andy,
Try Help via "sequence of events" A combobox acts just like a Text
control as far as the sequence of data changing events goes.
The Exit and LostFocus events for the changed control occur after the
BeforeUpdate and AfterUpdate events:

BeforeUpdate > AfterUpdate > Exit > LostFocus
 
Top