DateTime - LostFocus Event
Fired when focus moves away from the date
Member of DateTime (PRIM_EVDT)
Details
The LostFocus event fires when focus is moving to a different control.
The focus control is the one that will respond to keyboard entry.
If using the Tab key to navigate around an application, focus will follow the sequence as defined by the TabPosition property.
Focus can be set to a control programmatically.
Example
Setting focus to another control in a button click.
Evtroutine Handling(#Open.Click)
#Detailer.SetFocus
#Detailer.ShowEmployee(#Empno)
Endroutine