Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i get the computer name and ip address of my pc? for example i want to display it on a text box.

Thanks in advance

share|improve this question

2 Answers

up vote 9 down vote accepted

Have a look at this: link

and this: link

textBox1.Text = "Computer Name: " + Environment.MachineName

textBox2.Text = "IP Add: " + Dns.GetHostAddresses(Environment.MachineName)[0].ToString();
share|improve this answer
Thank you. It worked fine – Holyoxx Jan 24 '11 at 5:26
NP glad I could help – Rye Jan 24 '11 at 5:29
get the ipaddress of your own machine is passible, how to get other machine ipaddress, while they login our application? – Prince Antony G Apr 19 '12 at 6:12

Check more about this : How To Get IP Address Of A Machine

System.Security.Principal.WindowsPrincipal p = System.Threading.Thread.CurrentPrincipal as System.Security.Principal.WindowsPrincipal;


string strName = p.Identity.Name;


To get the machine name,


System.Environment.MachineName 
or
using System.Net;
strHostName = DNS.GetHostName ();


// Then using host name, get the IP address list..
IPHostEntry ipEntry = DNS.GetHostByName (strHostName);
IPAddress [] addr = ipEntry.AddressList;

for (int i = 0; i < addr.Length; i++)
{
 Console.WriteLine ("IP Address {0}: {1} ", i, addr[i].ToString ());
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.