I use the dephi7 client / server descriptor components to send a file with tfilestream from client to server.
I can get the progress of the file received on the server side, but on the client side, how can I get the progress of the sent file?
this is how i send the file:
fstream:=tfilestream.Create(opendialog1.FileName,fmOpenRead);
clientsocket1.Socket.SendStream(fstream);
Thanks and appreciate any help.
source
share