Click here to Skip to main content
15,886,783 members
Articles / Programming Languages / C#

A C# IP Address Control

Rate me:
Please Sign up or sign in to vote.
4.72/5 (98 votes)
28 Apr 2008MIT4 min read 785.3K   39.8K   297  
A C# analogue to the MFC CIPAddressCtrl
using System;
using System.Net;
using System.Windows.Forms;

namespace TestIPAddressControl
{
   public partial class Form1 : Form
   {
      public Form1()
      {
         InitializeComponent();
      }

      private void Form1_Load( object sender, EventArgs e )
      {
         IPHostEntry ipHostEntry = Dns.GetHostEntry( Dns.GetHostName() );

         IPAddress[] ipAddresses = ipHostEntry.AddressList;

         if ( ipAddresses != null && ipAddresses.Length > 0 )
         {
            _ipAddressControlLocal.SetAddressBytes( ipHostEntry.AddressList[0].GetAddressBytes() );
         }
      }
   }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions