Well, that won't work because Integers can only hold a maximum of 32767.

I think you are better off using a string (what is the maximum for a Long?)

VB Code:
  1. Private Sub Form_Load()
  2.  
  3.     Timer1.Interval = 1000  '1 sec
  4.     Timer1.Enabled = True
  5.    
  6. End Sub
  7.  
  8.  
  9. 'create a Timer on your form and set Interval = 1000 (1 second or whatever)
  10. Private Sub Timer1_Timer()
  11. Static strCounter As String
  12. Dim add As String
  13. add = "1"
  14.  
  15.     strCounter = strCounter + add
  16.     If strCounter ="360000" Then '6minutes as passed
  17.         WebBrowser.Navigate ("www.google.com")
  18.         intCounter = 0
  19.     End If
  20.  
  21. End Sub

Phreak