H
Howard Kaikow
The following will active IE.
Dim t As Type = Type.GetTypeFromProgID("InternetExplorer.Application")
Dim o As Object = Activator.CreateInstance(t)
t.InvokeMember("Visible", BindingFlags.SetProperty, Nothing, o, New Object()
{True})
t.InvokeMember("Navigate", BindingFlags.InvokeMethod, Nothing, o, New
Object() {www.microsoft.com})
Using the following, I thought that I'd be able to activate Firefox. Did not
work.
Can Firefox be activated in .NET code?
Dim t As Type = Type.GetTypeFromProgID("Mozilla.Browser.1")
Dim t As Type = Type.GetTypeFromProgID("InternetExplorer.Application")
Dim o As Object = Activator.CreateInstance(t)
t.InvokeMember("Visible", BindingFlags.SetProperty, Nothing, o, New Object()
{True})
t.InvokeMember("Navigate", BindingFlags.InvokeMethod, Nothing, o, New
Object() {www.microsoft.com})
Using the following, I thought that I'd be able to activate Firefox. Did not
work.
Can Firefox be activated in .NET code?
Dim t As Type = Type.GetTypeFromProgID("Mozilla.Browser.1")