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

The Archive Base Latest Questions

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

Connecting to another computer via sockets (which I have somewhat succeeded at, yay me)

  • 0

Connecting to another computer via sockets (which I have somewhat succeeded at, yay me) involve typing in the IP Address of the host computer, which my professor deemed “not user friendly”.

My previous program involved using a Server, which is now no longer needed due to the Socket connection stuff. The code I used back then was to list down the Network names, something my professor liked very much.

NetworkBrowser nb = new NetworkBrowser();
foreach (string pc in nb.getNetworkComputers())
{
   lstNet.Items.Add(pc);
}

Would it be possible to, say, use that code, and have the program retrieve the IP Address (IPv4, if possible) when the User selects a Computer name on the network? This would be done before any socket connection is made.

Or if that fails / is impossible, how would I list down the IP Addresses of the computers in a Listbox? I’m really not sure how to implement that ARPing thing I keep hearing about.

Unfortunately, my school runs only .NET 2.0, so I’m afraid my only option is C# Windows Forms, and no WCF or anything.

Many thanks to all and any who answer.

  • 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-27T03:04:47+00:00Added an answer on May 27, 2026 at 3:04 am

    You can perform a DNS request to get the IP address:

    IPAddress[] addresslist = Dns.GetHostAddresses(pc);
    foreach (IPAddress address in addresslist)
    {
       Console.WriteLine(address.ToString());
    }
    

    You will have to include System.Net (available in .NET 2.0)

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

Sidebar

Related Questions

Is it possible to connect to an instance of sql express via another computer
I've recently made another question about connecting to MS-ACCESS database with .NET in C#
I am having trouble connecting my online application to others across another network. I
When connecting to a network share for which the current user (in my case,
When connecting to sql server, I have the hardcoded string (local). Is this a
I have to transfer large files between computers on via unreliable connections using WCF.
I imported my already working project on another computer and it started to download
I have a BAT file that runs on startup via the group policy on
I'm trying to make a program where if it's installed on another computer, I
The program I'm coding connects to another program via a network-API, and I believe

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.