Another issue:
I need to LoadFromStream and display in Tmemo, so I did:
Memo1.Lines.LoadFromStream(proces.Output),
it works, but then I need to LoadFromStream and display it in TMemo again and I do not know how add new text from stream to already existed in TMemo, each portion of text coming from stream occupies few lines
if I use
Memo1.Lines.LoadFromStream(proces.Output),
text in TMemo is replaced by new text coming from stream
Note that I cannot wait and display all text at once when the proces is done, I need to display it in parts and very often
ciao