How can I make sure that I am not getting a cached version of a web page when I navigate to it?
refreshed the page I came from and
causes an endless loop. Do I need to set a variable and check its value to make it happen once or is there an easier way?
Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rick Cook
Code:
Web1.Navigate URL
Web1.SetFocus
Web1.Refresh
Code:
Private Sub Web1_DocumentComplete(ByVal Text As String)
Web1.Refresh
End Sub
causes an endless loop. Do I need to set a variable and check its value to make it happen once or is there an easier way?
Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rick Cook
