Is it possible to save this UDT to SQLite? If YES how?:sign0085:
If NO, is there any other way to save it?
Like in VB6
If NO, is there any other way to save it?
B4X:
Type MenuItems(ID, ParentID, SubID() As Int, Text As String, Icon As Bitmap)
Dim mnu() As MenuItems
Like in VB6
B4X:
Save:
Open Filename$ For Binary As #X%: Put #X%, 1, MyUDT: Close #X%
Dump the file back into the UDT:
Open Filename$ For Binary As #X%: Get #X%, 1, MyUDT: Close #X%
Last edited: