It is probably obvious, but I haven't found the simplest way to continuously update Date and Time in a Text Box.
ThisItem.Text=Now() Is static and doesn't refresh (which I think is normal)
Using a timer and setting the Text property of a Text Box to Timer.Value works, the Text Box gets updated, I tried using a timer with the OnTimerEnd Event, but didn't find a way to use it to update the Text Property of a Text Box.
The only idea I have is not very satisfying: use a concatenation of the Now() result and Timer.Value for the seconds, which is a bad hack.
Thanks for the help.