What are the primary differences regarding Text Box Controls Exit, Change, and BeforeUpdate, and why would I choose one over the other?
What are the primary differences regarding Text Box Controls Exit, Change, and BeforeUpdate, and why would I choose one over the other?
You could write some code to check the order of events; I think the sequence is
Enter
BeforeUpdate
AfterUpdate
Change
Exit
In my experience, the easiest is the Exit event. You see what the user intended to leave in the textbox, and can do validation as necessary.
Using BeforeUpdate/AfterUpdate/Change requires you to handle input character by character.
Entia non sunt multiplicanda sine necessitate
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks