hi falks
this code results in deleting 2 rows rather than 1 :
-i Found old posts on the forum but solutions didn't work.
-P.S: I know bxtable is a lot better , but i can't use it in this project
thanks
this code results in deleting 2 rows rather than 1 :
B4X:
Sub Button_Click
'This button exists in a cell in the row to be deleted
Dim b as Button = Sender
Dim RowID as int = b.Tag
DeleteRow(RowID)
End Sub
Sub DeleteRow(RowID as int)
Tableview1.RemoveAt(RowID)
End Sub
-P.S: I know bxtable is a lot better , but i can't use it in this project
thanks