View Single Post
  #22 (permalink)  
Old 12-29-2008, 05:23 AM
Erel's Avatar
Erel Erel is offline
Administrator
 
Join Date: Apr 2007
Posts: 13,119
Awards Showcase
Basic4ppc Founder 
Total Awards: 1
Default

Thanks.
In the meantime you can edit the following code:
Code:
Sub CalcRowSize 
    y = 
1
    shouldRemoveLastRow = 
False
    
If Control(TableName,Table).RowCount = 1 Then
        shouldRemoveLastRow = 
True
        Control(TableName,Table).AddRow()
    
End If
Instead of adding an empty row you should add a row that matches the filter.
__________________
Basic4android documentation
Reply With Quote