Load stream to <div>
Posted: Fri Mar 28, 2014 9:41 am
Hi,
I load a stream to a RichView:
When you click on a button I need to change the previous text aded.
I would like to load my stream to a div
And then remove this div, how can I do that ?
Thanks
I load a stream to a RichView:
Code: Select all
stream := TFileStream.Create(sCheminFichier, fmOpenRead);
try
if not bTextOnly then
rvDocument.InsertRVFFromStream(stream, rvDocument.ItemCount)
else
LoadFichierDansRichViewTextOnly(rvDocument,stream);
finally
stream.Free;
end;
I would like to load my stream to a div
Code: Select all
<div id="my_stream"></div>
Thanks