I join all in a single variable and send the files over the internet, how can I do that ?
I want to learn how? in this example did not result
I do this
- Code: Select all
var
me:tmemorystream;
begin
me := tmemorystream.create;
//
to join is correct?
//
me.loadtofile := ('file1');
me.loadtofile := ('file2');
me.loadtofile := ('file3');
socket.sendstream(me);
socket.receivestream(me);
//
as divided now ?
//
end;