I'd really appreciate any help anyone could offer, please. I am using an
AxFramerControl in my
VB.NET Windows Form and saving the document text with
Word RTF formatting in a SQL table's varchar(max) field. I want to retrieve
the RTF document text from SQL and display it directly in the
AxFramerControl. But because the RTF apparently uses some special Word RTF
control words, some of the formatting is lost when I display it directly in
the AxFramerControl. The only way I have found around this is to use a
StreamWriter to write the RTF text to a local RTF file and then open that RTF
file in the AxFramerControl. But I do not want to write any file at all.
Is there any way to do this?