Re: [twsocket] WSocket Error on Delphi XE

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

>>> "Angus Robertson - Magenta Systems Ltd"  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


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


[twsocket] WSocket Error on Delphi XE

2010-09-27 Thread Gary Maholic
I installed XE 2 weeks ago, and downloaded the latest ICS tools.  When I 
recompiled one of my programs (written in Delphi 2005 with the ICS tools 
installed), I get an error on this line (the routine is for getting the PC's IP 
address):
 
ListOfIPs := form1.WSocket1.LocalIPList;
Error
  - 'TWSocket' does not contain a member named 'LocalIPList'
 
Did I somehow install the tools wrong?  My Ping and SNMP calls all compiled 
OK
 
Any suggestions would be most appreciated!
 
Thanks!
 
-Gary
--
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