Internet Options

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • ljlevend2

    #1

    Internet Options

    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

  • Peter Huang [MSFT]

    #2
    RE: Internet Options

    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.

    Comment

    • Cor Ligthert [MVP]

      #3
      Re: Internet Options

      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.



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

      I hope this helps,

      Cor

      "ljlevend2" <ljlevend2@nosp am.nospam> schreef in bericht
      news:734D2675-5B7E-451E-AB6D-9936DCF477C2@mi crosoft.com...[color=blue]
      > 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
      >[/color]


      Comment

      • Herfried K. Wagner [MVP]

        #4
        Re: Internet Options

        Peter,

        ""Peter Huang" [MSFT]" <v-phuang@online.m icrosoft.com> schrieb:[color=blue]
        > I think you may try to use the code below to invoke the dialog.
        > Process.Start(" inetcpl.cpl")[/color]

        That's one possible solution. If you want to preselect one of the tabs,
        take a look at the calls shown in
        <URL:http://dotnet.mvps.org/vb/samples/misc/SystemSetupDial ogs.zip> (the
        sample has been written in VB6, but the BAS file should work with little
        adaptions in VB.NET).

        --
        M S Herfried K. Wagner
        M V P <URL:http://dotnet.mvps.org/>
        V B <URL:http://classicvb.org/petition/>

        Comment

        • ljlevend2

          #5
          RE: Internet Options

          Thanks to you all for the help!
          Lance

          Comment

          Working...