-dynamically composing my docs from different sources to rveMain
1-st loading from blob field
2-d loading html from other field and going to paste in to doc - for this going to create new rveAdditional- load html like this...
Code: Select all
...
RVAControlPanel.InitImportPictures(nil, nil);
rve.OnImportPicture := RVAControlPanel.DoImportPicture;
RVHTMLViewImporter.LoadFromFile(randomFilePath, rve);
RVAControlPanel.DoneImportPictures;
rve.OnImportPicture := nil;
//RvHtmlImporter.LoadHtml(randomFilePath);
rve.FormatAll;
..
but this workaround seems to me not simple - is there any way to import some html content in document which is not empty to position of caret or next page?
Thanks in advance!