Rich Text and DataGridView
I have a DataGridView on a form that displays historical notes about an item. I also have a Notes form where a user can add notes about an item. We would like to allow the user to format the note's text to highlight special situations, etc.
What is the best way to do this and is there a way to have this show up in the DataGridView control that lists historical notes?
Thanks in advance.
Re: Rich Text and DataGridView
Quote:
Originally Posted by
Aspnot
We would like to allow the user to format the note's text to highlight special situations, etc.
Please try to explain some of the special situations
Quote:
Originally Posted by
Aspnot
is there a way to have this show up in the DataGridView control that lists historical notes?
You can show it in the dgv exactly in a similar fashion like you did in the first case where you told that your form has a DGV which displays historical notes about an item :)
Re: Rich Text and DataGridView
Quote:
Please try to explain some of the special situations
We want to be able to add bold and change font colors, etc.
Can I display bold and colors in the DGV? If so, what format does the text need to be in?