Hi together,
with KeyValueStore, saving Arrays was really simple...
https://www.b4x.com/android/forum/threads/saving-an-array-with-kvs.48213/
it seems, saving arrays by this way doesn't work in KeyValueStore2 - right?
If 'yes' - where can i find infos about how to save arrays with KVS2 - or is it impossible? - Should i use KeyValueStore instead of KeyValueStore2 ?
I tried this without success:
best regards
Herbert
with KeyValueStore, saving Arrays was really simple...
https://www.b4x.com/android/forum/threads/saving-an-array-with-kvs.48213/
it seems, saving arrays by this way doesn't work in KeyValueStore2 - right?
If 'yes' - where can i find infos about how to save arrays with KVS2 - or is it impossible? - Should i use KeyValueStore instead of KeyValueStore2 ?
I tried this without success:
B4X:
Sub Process_Globals
Dim KVS As KeyValueStore
Dim ETC As Int = 255
Dim EPreis(ETC,7) As Double
End Sub
Sub Service_Create
KVS.Initialize(File.DirInternal, "myData")
EPreis=KVS.GetDefault("EPreis",0)
End Sub
best regards
Herbert