Hello,
We are using VSFlexGrid v7 in a Visual Basic Project.
We have a problem about a cell that have too much lines and it seems that is impossible to see the last lines of the cell.
The problem is the cell that have a lot of lines, and the WordWrap is setted to 'True' and when we execute Autosize method, the cell resize automaticatly and its size is higher than the control vsflexGrid, and we cannot see the last lines of this cell.
Below there is the example that illustrates this problem that we have explained, and you will see that it's impossible to see the lasts letters of the cell (0,0).
We are glad to see if anyone can help us about it.
Thanks.
'******* This is the example **********
Private Sub Form_Load()
With VSFlexGrid1
.Height = 1400
.Width = 2500
.ScrollBars = flexScrollBarVertical
.AutoSizeMode = flexAutoSizeRowHeight
.AutoResize = True
.WordWrap = True
.FixedRows = 0
.FixedCols = 0
.Editable = flexEDNone
.Cols = 1
.Rows = 2
.TextMatrix(0, 0) = "A" & vbCrLf & _
"B" & vbCrLf & _
"C" & vbCrLf & _
"D" & vbCrLf & _
"E" & vbCrLf & _
"F" & vbCrLf & _
"G" & vbCrLf & _
"H" & vbCrLf & _
"I" & vbCrLf & _
"J" & vbCrLf & _
"K" & vbCrLf & _
"L" & vbCrLf & _
"M" & vbCrLf & _
"O" & vbCrLf & _
"P" & vbCrLf & _
"Q" & vbCrLf & _
"R"
.TextMatrix(1, 0) = "Z"
.AutoSize 0
End With
End Sub
'************ end of the example