Simplemente pon un contador y un intervalo de p.ej. 60000:
Código vb:
Ver originalPrivate Sub Timer1_Timer()
Static Contador As Integer
Contador=Contador+1
If Contador=2 then ' total 120 segundos
Contador=0
....
.... tu codigo del timer
....
End If
End Sub
Saludos