So in my winforms project, I have a few Rich Text Box fields. I want to load some information into these fields from a file. The file can contain text, formats, tables, and even pictures.
So, everywhere I read, to load a Rich Text Box you have to code:
rtbPartPlayed.LoadFile(partPlayedFile, RichTextBoxStreamType.RichText);
However, in doing this, I get all the text, but none of the images.
If I do the reverse, and save what is in my rich text box field to a file with:
rtbPartPlayed.SaveFile(tmpPath + "\\" + gsPartPlayed + ".rtf", RichTextBoxStreamType.RichText);
It saves the images and all the data to file.
How can i get it to load with the images?
Thanks Bradley