set the timer to 60000 which is 1 minute and use a static variable in the timer event to incriment it until it = 10... something like
VB Code:
Private Sub Timer1_Timer Static iCount as Integer if iCount = 10 then iCount = 0 'YOUR CODE HERE else iCount = iCount + 1 end if End Sub




Reply With Quote