Originally posted by JasonLpz
not to discorage anyone but this code is pure simplcity . If you want to make one just use the web browser template that comes with vb then add 1 button and 1 text box :
it would be something like this

VB Code:
  1. Public OnOff As Integer
  2. Private Sub Command1_Click()
  3.     If OnOff = 0 Then
  4.         Command1.Caption = "Started"
  5.         Timer1.Enabled = True
  6.         OnOff = 1
  7.             Else
  8.         Command1.Caption = "Stoped"
  9.         Timer1.Enabled = False
  10.         OnOff = 0
  11.         End If
  12. Timer1.Interval = Text1 * 1000
  13. End Sub
  14.  
  15. Private Sub Form_Load()
  16. OnOff = 0
  17. Timer1.Enabled = False
  18. WebBrowser1.GoHome
  19. End Sub
  20.  
  21. Private Sub Timer1_Timer()
  22. WebBrowser1.Refresh
  23. End Sub

Not trying to mean anything offensive ok.
no no i don't think of that at all we are all here to learn and share knowledge right and that's almost how my code is with a few changes however for some reason the zip with all the code did upload and i am not at the computer i did the app on so i will re-re-post it tomorrow. no offense taken