I have few Entry controls in my app, every Entry has a Lost-Focus event. There is button, it has a Click Event to process further. My problem is when user clicks the button, the Lost-Focus event of the last Entry is fired after the button-click. I want the Lost-Focus to be executed before button-Click.
So I thought to add a Application-Do-Events like something at the start of Button-Click. Please note I do not wish to Fire the Lost Focus from Button-Click as the Entry controls are created programmatically based on user inputs on the previous page.