i have no idea what i am doing.. . can you check what is wrong?
i been up all night trying to get this to work
Code:Private Sub Form_Load() Timer1.Interval = 1000 '1 sec Timer1.Enabled = True End Sub 'create a Timer on your form and set Interval = 1000 (1 second or whatever) Private Sub Timer1_Timer() Static intCounter As Integer intCounter = intCounter + 1 If intCounter = 1000 Then '6minutes as passed WebBrowser.Navigate ("www.google.com") intCounter = 0 End If End Sub






Reply With Quote