delphi - rtf and html can live in the same application? -
I think this is a very popular problem for me. I have a heritage app that includes the RTF field. In my case, RTF is used only for very basic features (font: size, style, color, hyperlinks). Anyway since I allow to paste from the word, sometimes some more complex things can go there.
Now RTF is fine, even with Report Builder, I can get the report where the RTF is printed. > The problem comes with the web application I am developing a web application which is basically an alternative interface for my heritage app.
At this level, I solved the problem by removing RTF formatting (I used the TRICHEdit move discussed).
Anyway I would ideally like to be able to see and edit the formatted text in both web applications and Win32 applications.
What can be the solution?
I have a link to a converter.
But even if I can change these points, I will not match:
- Storage: What to store? Of course I currently store RTF.
- Will I show the RTF every time in the web app and then change it back to the RTF for storage?
You can apply an RTF editor to your web application.
In this way you do not have to change the storage format.
Comments
Post a Comment