Hi guys,

Another query on the internetExplorer instance i'm using.

Up until now, i've been using webBrowser controls, but i've run up against a JSP issue which i just cannot seem to fix.

So i've begun using SHDocVw.InternetExplorer controls. Now i have a couple of issues with this method.

1) I can't seem to access the .document within the control (which i have instanced as 'IE').
Code:
    Public IE As SHDocVw.InternetExplorer

....


        Dim HTMLDoc As HtmlDocument
        
        IE.visible = True
        HTMLDoc = IE.Document

        MsgBox(HTMLDoc.Body.InnerText)
Any ideas or suggestions?


2) Is there anyway to dock or embed the InternetExplorer instance within a form on the application?

Thanks in anticipation