pro_vb thread: What solution for a timer with an interval > 65000 ms ?
Use the Timer() function in VB
>>
Private Sub Pause(ByVal Seconds As Single)
Dim StartTime As Single
StartTime = Timer
Do While Timer < (StartTime + Seconds)
DoEvents
Loop
End Sub
|





