I have a program that shells to a browser and launches a web site. The code I am using is:
Rcode& = Shell ("explorer " + "http:my.website")
It works but it uses the default browser. So, if Internet Explorer is not the default browser then IE is not used to display the web page.
I have a need to ensure that IE is used to display this webpage when I shell to it.
Is there a way to rewrite the command above so that it will always use IE when shelling to my webpage?
Rcode& = Shell ("explorer " + "http:my.website")
It works but it uses the default browser. So, if Internet Explorer is not the default browser then IE is not used to display the web page.
I have a need to ensure that IE is used to display this webpage when I shell to it.
Is there a way to rewrite the command above so that it will always use IE when shelling to my webpage?
Comment