I'm working on a windows form application and I want to have a rich text box display the status of events that are firing based on different objects. I want to be able to format the items as they come into the rtb using the rtf property so that they can be easily distinguished from each other by changing font weight and color.
The format would contain
<b><datetime></b> - <colored text>Event Type</colored text> - <plain text>Event Details</plain text>
I've been doing a lot of research on RTF and it appears to be possible, but getting the formatting down is difficult. From what I can find I need to enter a header with very specific tags for it to work in the first place.
It seems like a lot of hoops to jump through just to get it to work and it would be nice if I could find a site where i could enter text into rtb, format it, and then click a button and get back the rtf that is generated that way I would have a good idea of what I would have to do to get this to work.