Re: [twsocket] FTP Server Virtual Directory Example

2010-10-23 Thread Angus Robertson - Magenta Systems Ltd
Does someone have an example in Delphi of the use of virtual directories using the FtpServer component I have two arrays with the virtual and physical names: VDirs: WideStringArray ; PDirs: WideStringArray ; which is filled with real paths: VDir1=d:\websites\logfiles PDir1=d:\logs so if the

[twsocket] Capturing UDP packets

2010-10-23 Thread Signed SourceĀ® Project
Hello, Does anyone have some example of how to capture udp packets from the air with ICS components? if yes, Please do share if you can. Thanks in advance -- -daniel -- To unsubscribe or change your settings for TWSocket mailing list please goto

Re: [twsocket] Capturing UDP packets

2010-10-23 Thread Francois PIETTE
Does anyone have some example of how to capture udp packets from the air with ICS components? Do you mean something list network sniffing ? See http://www.magsys.co.uk/delphi/magmonsock.asp Or simply receive UDP packets (Boradcast or adressed to the computer) ? See UdpLstn demo included

Re: [twsocket] Capturing UDP packets

2010-10-23 Thread Signed SourceĀ® Project
Hi Francois, I need to receive udp packets from a certain IP address placed in my network. Do we have any examples for this? Thanks in advance -daniel On 23.10.2010 18:20, Francois PIETTE wrote: Does anyone have some example of how to capture udp packets from the air with ICS components?

Re: [twsocket] Capturing UDP packets

2010-10-23 Thread Francois PIETTE
I need to receive udp packets from a certain IP address placed in my network. Do we have any examples for this? The problem is not from where it is sent from but to whom it is sent to. If the computer you want to run your capturing program is the one adressed by rge UDP packet, then ICS is

[twsocket] onProgress64 update interval

2010-10-23 Thread Svemu - Reparto Sviluppo
Hi, with an old version of ics, i use OnProgress for update a label with current trasfer, now i move to OnProgress64 but i see that event is fired every second, there is a way to have an update every 100 ms ? regards daniele -- To unsubscribe or change your settings for TWSocket mailing

Re: [twsocket] onProgress64 update interval

2010-10-23 Thread Francois PIETTE
with an old version of ics, i use OnProgress for update a label with current trasfer, now i move to OnProgress64 but i see that event is fired every second, there is a way to have an update every 100 ms ? Updating a label every 100 mS is a non sense. Updating once per second is enough. --