Returns an array of strings representing all the IP addresses of the specified host.
Syntax: GetIP (Host As String) As String()
Example:
'Show all available IP addresses.
Dim IP(0) As String
IP() = Client ("NETWORKNAME")
For i = 0 To ArrayLen (IP()) - 1
Msgbox (IP (i))
Next