Réponse acceptée !
Teste cellule par cellule si le texte contient un vbCrlf (ou plusieurs) et redimensionne la ligne en conséquence.
Ca doit donner un truc du genre :
For i = 0 to FlexGrid.Rows - 1
For j = 0 to FlexGrid.Cols - 1
if instr(1, FlexGrid.TextMatrix(i, j), vbcrlf) Then
FlexGrid.rowHeight(i) = FlexGrid.rowHeight(i) * 2
end if
next j
next i