The WebBrowser1 control loads a given URL:

VB Code:
  1. Private Sub Form_Load()
  2. MyURL = "http://www.domain.com/file.html"
  3. WebBrowser1.Navigate MyURL
  4. End Sub

Now, the file.html contains too much junk (JavaScript, Flash, images, Iframes, etc) that I dont need to be loaded in WebBrowser1. Basically it will take too much time to load the file with all the stuff that comes with it. I can manually click a Command1 and stop the WebBrowser1 from loading it:
VB Code:
  1. Private Sub Command1_Click()
  2. WebBrowser1.Stop
  3. End Sub
This gives me exactly what I want, just the file.html loaded into WebBrowser1. What I need is to automate the process without making the user click stop button whenever needed.

So, the big question is... Is there a way to load the file.html into WebBrowser1 without the images, sound, Flash, and everything else that might come with it, just the file itself?