Killian replied in my post "Firefox Questions"
I have set up Firefox 1.5 on a separate PC, downloaded the installer, registered the control, set the reference to the Mozilla Lib and tried the simplest testQuote:
The Gecko (the FireFox/Netscape engine) API is, AFAIK, only compatible with C++, but there are a couple of ActiveX Control Libraries for FireFox.
You'll need to download one, run the installer for the library and register the control (regsvr32 "C:\Program Files\Mozilla ActiveX Control v1.6\mozctlx.dll") then you should be able to use all the same methods and properties as with the IE object
which errors with 'browser is not in a valid state'. I can check oBR.readystate which always returns 0. The Gecko DOM model refers to a window class, and I am wondering if I am missing a window or other object with the simple test.Code:Option Explicit
Sub mozilla()
Dim oBr
oBr = CreateObject("Mozilla.Browser.1")
oBr.Visible = True
oBr.Navigate ("http:\\www.microsoft.com")
End Sub
TIA
Stan