Sub PrepareDB
Private CSB As CSBuilder
CSB.Initialize
CSB.Typeface(Typeface.MATERIALICONS)
CSB.BackgroundColor(Colors.Blue).Color(Colors.White).Append(Chr(0xE84D))
If Not(KVS.ContainsKey("csb1")) Then
KVS.Put("csb1",CSB)
End If
End Sub
And when I store as string, of course I lost the formatting.
From what I could figure, you could pass your CSB into a list, and pass that list to the kvs2, or create your own type based on CSB, and pass that to kvs2
Thanks Cableguy. It was a good idea but produces the same error as above. Well, it seems that I will have to use types and generate the labels on the fly so.
I never used kvs so I just took it from introductory post...
Since kvs is a class, can't you try to create your own methods inside it to work with your object type?
Absolutely and I had try but the problem is with the char to serialize. It is the char that generates the error and I did not found any workaround, reason why I did ask