I have a richtextbox. I can ctrl-V text into it, but it doesn't save it when I use the code below:
It does save text that I manually enter.
- String saveTBFileName = my.Directory + "\\" + myfileName;
- tempNote.textBox.SaveFile(saveTBFileName,
- RichTextBoxStreamType.RichText);
Any help appreciated!
Thanks.
Ken