12-09-2010, 09:42 AM
Hello.
I have an script that has a function that opens my IE browser, something like:
I have a question:
1. I need to run the same script in Firefox and other IE version, then: How do I open firefox or the other stand alone IE?
PS: I would like to have a function to open each of them or maybe to have only one to open a browser based on a value (using a CASE condition)
Thanks for your advice.
I have an script that has a function that opens my IE browser, something like:
Code:
Function ....
Set oBrowser = CreateObject("InternetExplorer.Application")
oBrowser.visible = 1
oBrowser.Navigate2 sURL
End Function
I have a question:
1. I need to run the same script in Firefox and other IE version, then: How do I open firefox or the other stand alone IE?
PS: I would like to have a function to open each of them or maybe to have only one to open a browser based on a value (using a CASE condition)
Thanks for your advice.