- HAL9000 said:
Ok, I see the IE Advanced option for "Reuse Windows For Launching
Shortcuts". Looks like it defaults to "checked" on winxp
installation.
So does that mean that their is a registry entry for that IE option?
If so, can one read/modify it?
Rather than change a user's system settings, I would suggest you
throw together a fix that will suit your needs, and leave the user
keep their own settings.
One way to work around the problem is to start a new process that
loads a local HTM file, where the HTM file is a redirect to the page
you want to go to. You could create the HTM file from your program
and launch it using the Process.Start method. For an example, Paste
the following into Notepad and save it somewhere as Redirect.htm.
<HTML><HEAD>
<META http-equiv="refresh" content="0;URL=
http://www.google.com"></META>
</HEAD></HTML>
Assuming you save that to D:\temp\redirect.htm, you can call it like:
Process.Start("d:\temp\redirect.htm")
(Be advised, not all browsers support the refresh directive.)
I personally don't like software that thinks it owns the system just
because I let it execute. Software that changes settings I regularly use
isn't going to remain on my system for long (if I can help it...) I
suspect your users would prefer the indirect route, rather than you
accessing various parts of their Registry.
HTH
LFS