Below is the VB.NET code I came up with to get (most of) the source
code off a given page.  You will need to add a MSHTML refrence to you
project for this to work.  Thanks to everyone who helped me with this:

AxMozillaBrowser1.Navigate("http://www.mozilla.org";)
TextBox1.Text = ""

Dim MyDoc As mshtml.IHTMLDocument2 = AxMozillaBrowser1.Document
Dim oFld As mshtml.IHTMLElement

For Each oFld In MyDoc.all
  TextBox1.Text = TextBox1.Text & oFld.innerHTML
Next

_______________________________________________
mozilla-embedding mailing list
[email protected]
http://mail.mozilla.org/listinfo/mozilla-embedding

Reply via email to