I would like to delete empty rows from an msflexgrid table. I am using this loop, but it does not seem to be working ? What can I change ? Thanks in advance :)
[CODE=vb]i = 0
Do While i < MSFlexGrid1.Row s
If MSFlexGrid1.Tex tMatrix(i, 0) = "" Then
MSFlexGrid1.Rem oveItem i
End If
i = i + 1
Loop[/CODE]
[CODE=vb]i = 0
Do While i < MSFlexGrid1.Row s
If MSFlexGrid1.Tex tMatrix(i, 0) = "" Then
MSFlexGrid1.Rem oveItem i
End If
i = i + 1
Loop[/CODE]
Comment