Good afternoon everybody,
I have come across a post in this forum where someone has used the following code to launch the browser
It is an interesting way, no doubt. But which is the best way to launch the browser and why. Calling a function like this or a simple systemutil.run?
Thank you so much
Soumya
I have come across a post in this forum where someone has used the following code to launch the browser
Code:
function open()
Dim oexplorer
Set oexplorer=createobject("InternetExplorer.application")
oexplorer.visible=true
oexplorer.navigate "http:\\yahoo.in"
Set open=oexplorer
Set oexplorer=nothing
End Function
Call open()
It is an interesting way, no doubt. But which is the best way to launch the browser and why. Calling a function like this or a simple systemutil.run?
Thank you so much
Soumya