The imp. thing is you put the newline character inside the string and then display it into the grid.
Does it work?
I am not a complete idiot. Some parts are still missing. Check out the rtf-help tutorial General VB Faq Thread Change is the only constant thing. I have not changed my signature in a long while and now it has started to stink! Get more power for your floppy disks. ; View honeybee's Elite Club: Use meaningfull thread titles. And add "[Resolved]" in the thread title when you have got a satisfactory response.
And if that response was mine, please think about giving me a rep. I like to collect them!
You have to make sure that WordWrap is set to True for the MSFlexGrid and then populate the grid. If you want to control where the line breaks occur in the text, use the vbCrLf where necessary.
Code:
strTemp = "This is Line 1." & vbCrLf & "This is Line 2."