Timer example

I would like to do something automaticly, let’s say every minute.
for example to display a message box, how can I do that ?

If you put a Timer on a window and set it’s Mode to ModeMultiple it’s Action Event will occur every period you set (in milliseconds) as long as that window is open. So to have it occur every one minute you would set it for 60000ms. In the Action Event you would display the message box.

thanks Tim, works perfectly