Question

I am working on a VB.NET project that retrieves data from the specified database and saves the result into a file with a unique extension (viz. *.vcs). The thing that troubles me is that I need to save the data with user defined formatting (e.g. font color, font size, etc) so that he finds it in the same format when he accesses the file again in future. Any suggestion as to how can this be done?

Was it helpful?

Solution

You can use RichTextBox control to save (RichTextBox.SaveFile()) and load (RichTextBox.LoadFile()) content in RTF format.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top