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 :=

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

[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 -