Click here to Skip to main content
15,886,708 members
Articles / Programming Languages / Visual Basic

Whats My IP Address ?

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
21 Sep 2011CPOL 6.1K   2  
Private Sub GetIPAddress()Dim strHostName As StringDim strIPAddress As StringstrHostName = System.Net.Dns.GetHostName()strIPAddress = System.Net.Dns.Resolve(strHostName).AddressList(0).ToString()MessageBox.Show("Host Name: " & strHostName & "; IP Address: " &...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


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

Comments and Discussions