I have a DataGridView in readonly mode in a .NET 3.5 (Visual Studio 2008) WinForms application.
The cells' width is very small. Some of the cells contain a short number. Now, even with a small font, sometimes the number is shown with an ellipsis. For example "8..." instead of "88".
Is there a way to let the text flow over the next cell in a standard DataGridView and avoid the ellipsis?
Thanks!