>     ListOfIPs := form1.WSocket1.LocalIPList;
> Error
>   - 'TWSocket' does not contain a member named 'LocalIPList'

LocalIPList is not a TWSocket method, it is a function in the
OverbyteIcsWSocket unit, so the line should be 

ListOfIPs := LocalIPList;

or if the compiler complains, 

ListOfIPs := OverbyteIcsWSocket.LocalIPList;

Angus

--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be

Reply via email to