unzip the project attached in this thread you linked.
The editabletable is in the zip. Just extract all files.
Make sure to use the newest B4A Version.
unzip the project attached in this thread you linked.
The editabletable is in the zip. Just extract all files.
Make sure to use the newest B4A Version.
I have extracted it, but I don't know how the initial process starts
B4X:
Sub Globals
Private et As editabletable
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.Title = "Table Example"
et.Initialize(Activity)
End Sub
Sub Activity_KeyPress (KeyCode As Int) As Boolean 'Return True to consume the event
If KeyCode = KeyCodes.KEYCODE_BACK Then
If et.PrefDialog.BackKeyPressed Then Return True
End If
Return False
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
et.ExportTableToCSV
End Sub