Change URL of IEXPLORE Process

G

Guest

Hi,
In my application I started a Process using ProcessStartInfo supplying
it parameters iexplore.exe and a URL. I am trying to reuse the same process
by supplying it with a different URL. After assigning a new ProcessStartInfo
object created with a New URL I am trying to refresh the Process. This
action is not refreshing the Internet Explorer with the new URL. Please let
me know if there is a way to change the URL of an existing IEXPLORE process
so that the browser displays the new web page.

Thanks ,
Srinivas
 
I

Ian Evitable

No i dont think so, not using a process instance. Generally if you want to
manipulate IE programmatically yo use the navigate event of
AxSHDocVw.AxWebBrowser.

Maybe you need to look into how your booting IE. If there is no specific
need to be starting it via a process.start command then id suggest your
using the wrong class to achieve your goal.

Ian
 
H

Herfried K. Wagner [MVP]

Srinivas said:
In my application I started a Process using ProcessStartInfo supplying
it parameters iexplore.exe and a URL. I am trying to reuse the same
process
by supplying it with a different URL. After assigning a new
ProcessStartInfo
object created with a New URL I am trying to refresh the Process. This
action is not refreshing the Internet Explorer with the new URL. Please
let
me know if there is a way to change the URL of an existing IEXPLORE
process
so that the browser displays the new web page.

<URL:http://dotnet.mvps.org/dotnet/code/net/#IEReuseWindow>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top