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 4081538
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T18:04:26+00:00 2026-05-20T18:04:26+00:00

I have been designing a program using Visual C# and have came across an

  • 0

I have been designing a program using Visual C# and have came across an issue with making my program interact with web browsers. Basically what I need is to retrieve the URL address from a web browser (Internet Explorer, Firefox, Chrome etc…).

I figured this wouldn’t be too difficult of a task, but after days and days of research and tests, it seems almost impossible! Thus far, I have come across this…

Get Firefox URL?

Which has the code below:

using NDde.Client;
Class Test
{
    public static string GetFirefoxURL()
    {
        DdeClient dde = new DdeClient("Firefox", "WWW_GetWindowInfo");
        dde.Connect();
        string url = dde.Request("URL", int.MaxValue);
        dde.Disconnect();
        return url;
    }
}

Which is perfect for Firefox, but for some reason I cannot get it to work with anything else. I have changed the portion of the code that says “Firefox” to “Iexplore” like I found all over the internet, along with trying other forms of expressing Internet Explorer, and I get the following error:

“Client failed to connect to “IExplorer|WWW_GetWindowInfo”, Make sure the server application is running and that it supports the specified service name and topic name pair”

Any help on the issue would be much appreciated as it has become quite a task to figure out.

  • 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-20T18:04:27+00:00Added an answer on May 20, 2026 at 6:04 pm

    Here’s what I have so far (though Chrome I’m not finding any helpful articles on, other than using FindWindowEx (I don’t particularly like that method, personally).

    public class BrowserLocation
    {
        /// <summary>
        /// Structure to hold the details regarding a browed location
        /// </summary>
        public struct URLDetails
        {
            /// <summary>
            /// URL (location)
            /// </summary>
            public String URL;
    
            /// <summary>
            /// Document title
            /// </summary>
            public String Title;
        }
    
        #region Internet Explorer
    
        // requires the following DLL added as a reference:
        // C:\Windows\System32\shdocvw.dll
    
        /// <summary>
        /// Retrieve the current open URLs in Internet Explorer
        /// </summary>
        /// <returns></returns>
        public static URLDetails[] InternetExplorer()
        {
            System.Collections.Generic.List<URLDetails> URLs = new System.Collections.Generic.List<URLDetails>();
            var shellWindows = new SHDocVw.ShellWindows();
            foreach (SHDocVw.InternetExplorer ie in shellWindows)
                URLs.Add(new URLDetails() { URL = ie.LocationURL, Title = ie.LocationName });
            return URLs.ToArray();
        }
    
        #endregion
    
        #region Firefox
    
        // This requires NDde
        // http://ndde.codeplex.com/
    
        public static URLDetails[] Firefox()
        {
            NDde.Client.DdeClient dde = new NDde.Client.DdeClient("Firefox", "WWW_GetWindowInfo");
            try
            {
                dde.Connect();
                String url = dde.Request("URL", Int32.MaxValue);
                dde.Disconnect();
    
                Int32 stop = url.IndexOf('"', 1);
                return new URLDetails[]{
                    new URLDetails()
                    {
                        URL = url.Substring(1, stop - 1),
                        Title = url.Substring(stop + 3, url.Length - stop - 8)
                    }
                };
            }
            catch (Exception)
            {
                return null;
            }
        }
    
        #endregion
    }
    
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Internet Explorer: ");
            (new List<BrowserLocation.URLDetails>(BrowserLocation.InternetExplorer())).ForEach(u =>
            {
                Console.WriteLine("[{0}]\r\n{1}\r\n", u.Title, u.URL);
            });
            Console.WriteLine();
    
            Console.WriteLine("Firefox:");
            (new List<BrowserLocation.URLDetails>(BrowserLocation.Firefox())).ForEach(u =>
            {
                Console.WriteLine("[{0}]\r\n{1}\r\n", u.Title, u.URL);
            });
            Console.WriteLine();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have been designing our reports around Crystal Reports in VS2008 for our web
I have been working with Visual Studio (WinForm and ASP.NET applications using mostly C#)
We have been using CruiseControl for quite a while with NUnit and NAnt. For
I have been experimenting with woopra.com A web analytics tool. Which requires a piece
I have been working on a web services related project for about the last
I'm currently designing my first ever GUI for Windows. I'm using MFC and Visual
I have recently been thinking about the difference between the two ways of defining
Have been looking at the MVC storefront and see that IQueryable is returned from
Have been studying the file system related classes of Adobe AIR 1.5, but so
I have been looking into IKVMing Apache's FOP project to use with our .NET

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.