Anton Nikulin wrote: > > procedure TFTPClientForm.FtpClient1Progress64(Sender: TObject; Count: > Int64; var Abort: Boolean); > begin > ProgressBar1.Position:=Count; > end;
Note that updating the progressbar too frequently may slow down overall application performance and will eat a lot of CPU power. This won't be visible on a slow DSL line but on fast connections. The FTPClient demo shows how to not update the progress label each time OnProgress64 fires. -- Arno Garrels -- 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
