Domain IP resolution in...
Hi all, sometimes it could be useful to resolve a domain IP address so i wrote this simple function.
Public function GetIP(ByVal domain as String) as String
Try
Dim Ips As New Collection
Dim i As Integer
Dim ipEntry As Net.IPHostEntry = System.Net.Dns.GetHostEntry(domain)
...
