Open a text file, apply formatting(inclulding color) before it displays in RichTextBox
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I have a mulitline text file that has repetitive info in the first 29 characters. My program will strip the extra garbage off from each line and append it to the previous line. It also will change the color on specific lines of text, at a specific position, and it opens into a RichTextBox. I would like to speed this up somehow. Depending on the size of the file it takes a long time. I want to be able to apply the formatting etc while the file is in a buffer I guess, and then display to the RichTextBox. Thanks,