M
Matthias Kwiedor
Hello!
I wan't to open a Internet Explorer from C#. For this i read the Registry
Settings (to check the default Browser - won't do this just without that)
string strFilename = "c:\Program Files\Internet Explorer\iexplore.exe";
string strArguments = "http://www.google.com/";
Process ExternalURL = new Process();
ExternalURL.StartInfo.FileName = @strFilename;
ExternalURL.StartInfo.Arguments = strArguments;
ExternalURL.StartInfo.WindowStyle = ProcessWindowStyle.Normal;
ExternalURL.StartInfo.UseShellExecute = true;
ExternalURL.Start();
This works with XP fine, but Win2K starts the iexplore.exe, which i can
find at the task manager, but won't show it and even doesn't display them
in task manager as application, neither shows it in the taskbar!
Maybe someone can help me out of this.
Thank you
Matthias
I wan't to open a Internet Explorer from C#. For this i read the Registry
Settings (to check the default Browser - won't do this just without that)
string strFilename = "c:\Program Files\Internet Explorer\iexplore.exe";
string strArguments = "http://www.google.com/";
Process ExternalURL = new Process();
ExternalURL.StartInfo.FileName = @strFilename;
ExternalURL.StartInfo.Arguments = strArguments;
ExternalURL.StartInfo.WindowStyle = ProcessWindowStyle.Normal;
ExternalURL.StartInfo.UseShellExecute = true;
ExternalURL.Start();
This works with XP fine, but Win2K starts the iexplore.exe, which i can
find at the task manager, but won't show it and even doesn't display them
in task manager as application, neither shows it in the taskbar!
Maybe someone can help me out of this.
Thank you
Matthias