[twsocket] (no subject)

2009-07-15 Thread actionmanager
Здравствуйте, Twsocket. -- С уважением, Actionmanager mailto:actionmana...@gmail.com -- 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] (no subject)

2006-01-13 Thread Piotr Dałek
Hello! >>> Strange. Maybe your local MTU is set to 512 because of the dialup ? PPP >>> is defaut 512 bytes. >> >> I thought so too, but removing PPP didn't changed things. So I assumed >> that there's some unreverted changes in Winsock settings - I've changed >> appriopriate settings multiple tim

Re: [twsocket] (no subject)

2006-01-13 Thread Arno Garrels
Piotr Da³ek wrote: > Hello! > >> Hello Piotr, > >> Strange. Maybe your local MTU is set to 512 because of the dialup ? PPP >> is defaut 512 bytes. > > I thought so too, but removing PPP didn't changed things. So I assumed > that there's some unreverted changes in Winsock settings - I've changed

Re: [twsocket] (no subject)

2006-01-13 Thread Piotr Dałek
Hello! >> "-l 1472" works for WAN machines (ie. .wp.pl), >> but not localhost nor LAN. > It works here with Win-XP PRO SP2. So one of solutions is moving to WinXP Pro with SP2. No other reasonable solutions? ;-) I'll be googling more for this W95+Winsock2 feature later. Maybe I'll finally

Re: [twsocket] (no subject)

2006-01-13 Thread Piotr Dałek
Hello! > Hello Piotr, > Strange. Maybe your local MTU is set to 512 because of the dialup ? PPP > is defaut 512 bytes. I thought so too, but removing PPP didn't changed things. So I assumed that there's some unreverted changes in Winsock settings - I've changed appriopriate settings multiple tim

Re: [twsocket] (no subject)

2006-01-13 Thread Wilfried Mestdagh
Hello Piotr, Strange. Maybe your local MTU is set to 512 because of the dialup ? PPP is defaut 512 bytes. --- Rgds, Wilfried [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html http://www.mestdagh.biz -- To unsubscribe or change your settings for TWSocket mailing list please goto http://

Re: [twsocket] (no subject)

2006-01-13 Thread Francois PIETTE
quot; Sent: Thursday, January 12, 2006 11:26 PM Subject: Re: [twsocket] (no subject) > Hello! > >> Pinging 195.130.132.82 with 1473 bytes of data: > >> Packet needs to be fragmented but DF set. >> Packet needs to be fragmented but DF set. >> Packet needs to be f

Re: [twsocket] (no subject)

2006-01-12 Thread Piotr Dałek
Hello! > Pinging 195.130.132.82 with 1473 bytes of data: > Packet needs to be fragmented but DF set. > Packet needs to be fragmented but DF set. > Packet needs to be fragmented but DF set. > Packet needs to be fragmented but DF set. > As you see, my largest possible packet size is 1472. Adding 2

Re: [twsocket] (no subject)

2006-01-01 Thread Dorothea
Hi Wilfried Thanks for your email and yes it worked however I am looking for the TCPServer & UDPSServer components & not the components that were installed from the IcsDel50.dpk, is this because I am working with Delphi 5? Would a later version of Delphi, for example Delphi 8 install the TCPServ

[twsocket] (no subject)

2005-12-24 Thread Daniel Reynes
Merry Christmas to all ICS gurus Daniel -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.371 / Virus Database: 267.14.5/212 - Release Date: 23/12/2005 -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org

Re: [twsocket] (no subject)

2005-08-13 Thread Wilfried Mestdagh
Hello, > socket709.connect; > socket709.sendstr(#13); TWSocket is async. When you call connect; then it will execute in background and your program can do other things. Later when the connection is etablished OnSessionConnected is fired. If there is no winsock error (See Error argument),

Re: [twsocket] (no subject)

2005-08-13 Thread Scott
The help file is a bit hidden on the website - it may not help with your issue, but here it is: http://users.pandora.be/sonal.nv/ics/help/ A Question wrote: >My problem is so simple I'm embarrassed to ask. No doubt it's >completely my fault. I'm struggling with ICS because the software >c

Re: [twsocket] (no subject)

2005-08-13 Thread Francois PIETTE
s code: begin Memo1.Lines.Add('Received "' + socket709.ReceiveStr + '"'); end; Hope this helps... btw: Next time, use a better subject in your message to reflect what you are asking -- [EMAIL PROTECTED] http://www.overbyte.be - Original Message - F

[twsocket] (no subject)

2005-08-13 Thread A Question
My problem is so simple I'm embarrassed to ask. No doubt it's completely my fault. I'm struggling with ICS because the software comes with no 'user guide', no short examples, and even finding examples on the internet less than 1000 lines of code is hard. Despite those shortcomings I'm still

Re: [twsocket] (no subject)

2005-05-27 Thread Wilfried Mestdagh
Hello Melinda, You must call .Send in the thread context that the TWSocket is created in. --- Rgds, Wilfried http://www.mestdagh.biz Friday, May 27, 2005, 12:56, Melinda Bellei wrote: > Do i need to use critical sections when i'm calling TWSocket.Send ? > Into my application, sometimes i might

Re: [twsocket] (no subject)

2005-05-27 Thread Arno Garrels
Melinda Bellei wrote: > Do i need to use critical sections when i'm calling TWSocket.Send ? > Into my application, sometimes i might send automated messages( for > example per 2 minute ) and sometimes i can send a text message. But if > both of them would call the TWSocket.Send at the same time ? S

[twsocket] (no subject)

2005-05-27 Thread Melinda Bellei
Do i need to use critical sections when i'm calling TWSocket.Send ? Into my application, sometimes i might send automated messages( for example per 2 minute ) and sometimes i can send a text message. But if both of them would call the TWSocket.Send at the same time ? Should i manage this condition