Hello, not sure if this is where this thread should be, but I have a question. Alright, so anyone who has used or something similar to the following code (in VBS):
-----------------------
dim Window
set Window = CreateObject("InternetExplorer.Application")
Window.RegisterAsBrowser = True
Window.Navigate("www.microsoft.com")
Window.MenuBar = True
Window.ToolBar = True
Window.AddressBar = True
Window.StatusBar = True
Window.FullScreen = False
Window.Resizable = False
Window.Visible = True
Window.Width = 850
Window.Height = 720
-----------------------
Has possibly tried to do this:
-----------------------
set Window = CreateObject("FireFox.Application")
-----------------------
or a close variant. I've been searching and found that the problem is that it's not a registered COM server. How can I register the FireFox application as a COM server? And if this is possible, would it replace/unregister Internet Explorer?
Pre-Thanks
PS: This came to me in the instance of the crisis I am having with IE, here in my
other post.