I'm loading a DataGridView with some log data and 90% of the line each log entry is one line only. But in some cases, such as logging error output, I have 4 or 5 lines. I want to display each row at the correct height for it's content, for example...
+-------------------------------------------------------+
| Logged | Message |
+-------------------------------------------------------+
| Tue 12:15 | some text |
+-------------------------------------------------------+
| Tue 12:16 | error message |
| | ...more text |
| | ...and more |
+-------------------------------------------------------+
| Tue 12:18 | error message |
| | ...more text |
+-------------------------------------------------------+
| Tue 12:19 | some text |
+-------------------------------------------------------+
Is this possible?