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.