Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6951035
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:10:04+00:00 2026-05-27T14:10:04+00:00

I use VS 2010 Ultimate. I’m trying to add shdocvw.dll to my project’s references

  • 0

I use VS 2010 Ultimate.

I’m trying to add “shdocvw.dll” to my project’s references by right clicking References -> Add Reference…, then clicking Browse and navigating to “C:\Windows\System32\shdocvw.dll”, but when I click the Add button nothing happens at all. The dialog doesn’t even close.

Any idea what could I be doing wrong?

I tried restarting VS but kept having this problem.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T14:10:05+00:00Added an answer on May 27, 2026 at 2:10 pm

    In your C# solution, if you add a reference to the COM component named “Microsoft Internet Controls”, you should be able to access the SHDocVw namespace from a C# console app, without having to do anything unusual.

    Once I did that (in VS 2008) I was then able to use SHDocVw.ShellWindows, SHDocVw.IWebBrowser2, and so forth. For example:

    SHDocVw.ShellWindows shellWindows = new SHDocVw.ShellWindowsClass();
    
    foreach (SHDocVw.IWebBrowser2 ie in shellWindows)
    {
        Console.WriteLine("ie.LocationURL: " + ie.LocationURL);
        if (ie.LocationURL.Contains("foo.com"))
            ie.Quit();
    }
    

    EDIT: When using VS 2012/.NET 4.x, you can use the approach below instead, to work around the error “Interop type ‘SHDocVw.ShellWindowsClass’ cannot be embedded.”

    using SHDocVw;
    // ... snip ...
                SHDocVw.ShellWindows shellWindows = new ShellWindows();
                foreach (SHDocVw.IWebBrowser2 ie in shellWindows)
                {
                    Console.WriteLine("ie.LocationURL: " + ie.LocationURL);
                    if (ie.LocationURL.Contains("foo.com"))
                        ie.Quit();
    

    For more information on the VS 2012 issue, see this answer:

    C# How to get current URL from the IE?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to use the Q_OBJECT macro in my Visual Studio 2010 Ultimate project,
I use VS 2010 and C#. When I want to found all references to
When I compile our project use Delphi 2010 Trial, there has a fatal error
I'm using Visual Studio 2010 Ultimate and I know there's the Qt VS Add-In.
We use Visual Studio 2010 Ultimate with tests written in MSTest. Both our unit
Im using Visual Studio 2010 Ultimate and Im trying to convert some images using
I have a Visual Studio 2010 Ultimate C++ project ( not managed or .NET).
Trying to use VS 2010 regex to make specific changes to a css class
I am trying to use VS 2010 for writing C. Frequently, I try to
I use: Visual Studio 2010 Ultimate, Resharer 6. In ReSharper's options i choose Visual

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.