The text of this article is not in this database — only its details are. The old site it was published on is gone, but the Internet Archive kept a copy: Way to Track the Computer Name and IP Address in VB.NET
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.
tomas domagalaPosted May 22, 2012, 10:11 AM
Edit Quick solution for getting external IP in VB.Net Dim sIp As StringDim webClient As System.Net.WebClient = New _System.Net.WebClient() sIp = webClient.DownloadString("http://lbb.ie/ip.php") And that's it It is my own php file on my own server so go ahead :) Enjoy
tomas domagalaPosted May 22, 2012, 10:11 AM
Edit Quick solution for getting external IP in VB.Net Dim sIp As StringDim webClient As System.Net.WebClient = New _System.Net.WebClient() sIp = webClient.DownloadString("http://lbb.ie/ip.php") And that's it It is my own php file on my own server so go ahead :) Enjoy
tomas domagalaPosted May 22, 2012, 10:10 AM
Quick solution for getting external IP in VB.Net Dim sIp As String Dim webClient As System.Net.WebClient = New ystem.Net.WebClient() sIp = webClient.DownloadString("http://lbb.ie/ip.php") And that's it It is my own php file on my own server so go ahead :) Enjoy