delphi - how to get the progress of socket.SendStream ?
Posted
by ass
on Stack Overflow
See other posts from Stack Overflow
or by ass
Published on 2010-05-13T03:54:52Z
Indexed on
2010/05/13
4:04 UTC
Read the original article
Hit count: 157
delphi
hi all ! I use dephi7's client/server socket components to send a file with tfilestream from client to server.
I'am able to get the progress of file received at server side, but at client side, how do i get the progress of the file sent ?
this is how I send the file:
fstream:=tfilestream.Create(opendialog1.FileName,fmOpenRead);
clientsocket1.Socket.SendStream(fstream);
Thanks and appreciate for any help.
© Stack Overflow or respective owner