
How would I view the ie5 html code
Use the IE automation. Add a reference to Microsoft Internet Controls and
use the following code:
Dim IEWindows As ShellWindows, IE As InternetExplorer
Set IEWindows = New ShellWindows
For Each IE In IEWindows
If TypeName(IE.Document) = "HTMLDocument" Then
MsgBox IE.Document.body.outerHTML, , IE.LocationURL
End If
Next
--
Eduardo A. Morcillo
http://www.geocities.com/SiliconValley/Foothills/9940
Quote:
> Hi
> I am able to (vb5) enumproc thru on-screen windows and find
> the windowtext for microsoft internet explorer.
> What class name would I use and how would I view the text/html code
> displaying the ms internet explorer window.
> Wayne