VB6 application : WebBrowser.Navigate refresh every 3 minutes
问题 I am making an application using VB6 in which a WebBrowser window is launched using this code: Private Sub Form_Load() WebBrowser1.Navigate ("http://google.com") End Sub How can I make the window refresh the same url every let's say 3 minutes ? I know it should be something well known but i am still searching my way through VB programming 回答1: You don't need 2 timers. just have a global variable globalTimer As Date that keeps the last time you navigated You can set Timer1 to run every second