Re: [twsocket] WSocket Error on Delphi XE

2010-09-28 Thread Angus Robertson - Magenta Systems Ltd
 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


Re: [twsocket] WSocket Error on Delphi XE

2010-09-28 Thread Gary Maholic
Thanks, Angus - option 1 was successful!

 Angus Robertson - Magenta Systems Ltd an...@magsys.co.uk 9/28/2010 3:15 
 AM 
 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
--
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