Hi,

     In my project, have a module of getting the  browser object or shell
object of browsers. I got the Internet Explorer shell and dom objects.The
main process to get browser object of all opened mozilla firefox and other
browser except IE.

The following code is to get access only all Internet Explorer objects, it
works fine but require for Mozilla FireFox and other browsers

Dim objShellWins As New SHDocVw.ShellWindows

Dim objExplorer As SHDocVw.InternetExplorer

Dim objDocument As HTMLDocument

For Each objExplorer In objShellWins

If TypeOf objExplorer.Document Is HTMLDocument Then
objDocument = objExplorer.Document

End if

Next

any ideas or sample code is appreciatable,
Thanks

Reply via email to