Internet Options

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there any way either in VS.NET 2003 or 2005 to display the Internet
Options dialog that is shown when you click the Tools - Internet Options...
menu item in Internet Explorer? I know that VS.NET 2005 includes the
WebBrowser control for viewing web pages, but I didn't see any way to show
the Internet Options from that control.

Thanks for any help.
Lance
 
Hi

I think you may try to use the code below to invoke the dialog.
Process.Start("inetcpl.cpl")

Best regards,

Peter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
 
ljlevend,

I am busy with converting something from axshvdocvw to the 2005 shdocvw, I
have some troubles with that and cannot really find the (complete)
documentation around that, so I am waiting for that.

In the 2003 AX part of that, you can use the methods including the exec part
to include those in your own methods to your browser. However I have the
idea that it it is a subset from which I think compatible with IE 4.0.

All the documentation about the Exec is in C format, probably a reason why
the new one is build.

I do it in in my idea simpler way in 2003, but I think that this give you an
idea.

http://support.microsoft.com/default.aspx?scid=kb;en-us;311288

(The way I did it is to much spread in the program to make a sample from)

I hope this helps,

Cor
 
Back
Top