Many people facing this problem can't set timer more than 1 minute interval here is one of solution to all you need a timer and text box add this code to timer
I am showing how to make timer interval 10 minute :wave:
Private Sub Timer1_Timer()
If text1.text="10" then
'here type what you need to do after interval 10 minutes
text1.text="0"
else
text1.text=val(text1)+1
end if
end sub
I am showing how to make timer interval 10 minute :wave:
Private Sub Timer1_Timer()
If text1.text="10" then
'here type what you need to do after interval 10 minutes
text1.text="0"
else
text1.text=val(text1)+1
end if
end sub