So, I have a DataGridView that has multi-line data. I set the default cell style to have wrap turned on for cells so that the multi-line data is displayed rather than it all being on one line. However, when the data is larger than the DataGridView height the vertical scroll doesn't really work well. It snaps to the top of the cells such that the stuff that is beyond the height of the DataGridView is never visible. When I scroll with the scroll bar it just snaps to the top of the next cell, so I never get to see all the contents of the multi-line cell. Is there a way to add a scroll bar to the cell, or preferably a way to make the DataGridView scrollbar not snap to cell tops?

link|improve this question

This is a duplicate of this question: stackoverflow.com/questions/830211/… See my answer there. – mhenry1384 Oct 4 '10 at 19:23
feedback

1 Answer

up vote 1 down vote accepted

You can add a text box or richtextbox to the datagridview cell

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.