Dim ip() As IPAddress = System.Net.Dns.GetHostAddresses("www.microsoft.com")
If ip.Count > 0 Then
For Each ipadd As IPAddress In ip
MsgBox(ipadd.ToString)
Next
End If
Thanks
"Feel the Force !"
Proposed as answer bySpencer46571Sunday, April 11, 2010 8:57 PM
Marked as answer byJeff ShanMonday, April 19, 2010 2:06 AM