Oh - so you need it visible too.
Ok - the method above is often used when you have a hidden control on the form, and ensures there's no changes to the current record just by entering/viewing it.
Using techniques where a control is updatet only by tabbing thru has it's downsides
* if a user only clicks on those controls they want to update, the date will not be updated
* if a user only tabs thru the current record, or accidently clicks into this control, the date will be updated
Some events to try:
* on dirty event of the form - when a change is made
* in the on exit/on lost focus of the control
But, I think I'd keep one control unbound (the one for display puproses), and have a bound control invisible, to be updated by the forms before update event. Then populate the unbound control in the on current, and alter it in either the forms on dirty, or the other method described above, but that's just my view;-)
Roy-Vidar