Android Question B4XTable Edited Cell was Supposed to be Saved in CSV File When User Closed True but was not

Mahares

Expert
Licensed User
Longtime User
1. I run the example in B4XTableSelections Class thread in debug mode.
2. I edit a cell in debug mode
3. Then I click on ‘Stop’ in IDE User closed =true in the logs
4. Then I click ‘F11’ to restart
5. I check the cell that was edited, but the change was not saved to the csv file from previous run although the changes were supposed to be saved to the CSV file with this code:
B4X:
Sub Activity_Pause (UserClosed As Boolean)
            If UserClosed Then ExportTableToCSV
End Sub
 
Top