Get My IP Address

C

Cor

This is one of the posibilities

Dim myIpadres As System.Net.IPAddress
Dim strhost As String
Dim myWorkstation As String = System.Net.Dns.GetHostName()
Dim IPAdres As String =
System.Net.Dns.Resolve(myWorkstation).AddressList(0).ToString
Me.TextBox1.Text = myWorkstation & "=" & IPAdres & vbCrLf

Cor
 
H

Herfried K. Wagner [MVP]

* "Eddie said:
How may I get my IP Address with vb.net ?

\\\
Dim ip As Net.IPAddress
For Each ip In _
System.Net.Dns.Resolve( _
SystemInformation.ComputerName _
).AddressList
Console.WriteLine(ip.ToString())
Next ip
///

- or -

\\\
Dim strIpAddress as String = _
Dns.GetHostByName(Dns.GetHostName).AddressList(0).ToString()
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top