Sub Process_Globals
Dim Timer1 As Timer
End sub
Sub Activity_Create(FirstTime As Boolean)
' in 5 seconds time it will run the code in Timer1
Timer1.Initialize ("Timer1", 5000)
Timer1.Enabled = True
End Sub
Sub Timer1_tick
' Now continue to another sub...
'Or
' Place your code here
End Sub