Hey everyone!
Im storing inside a map some double values... but when that values inside the map are null and I want to show in a label.text = 0,00 it shows me null... I mean If my map.size = 0 I need to show 0,00 on the label.text and I can't change that text
Here's my map
on my my devece lblValues shows me: null and I need it shows me 0,00
I've changed it to '00,0' then to 0 then to '0' I also created a varible to assign to the label with a 0,00 value but nothing happens.. it just still showing null. Thank you
Im storing inside a map some double values... but when that values inside the map are null and I want to show in a label.text = 0,00 it shows me null... I mean If my map.size = 0 I need to show 0,00 on the label.text and I can't change that text
Here's my map
B4X:
account = parser.NextArray
For i = 0 To account.Size - 1
Dim m As Map
m = account.Get(i)
If m.Size = 0 Then
LblValues.Text = "0,00 "
on my my devece lblValues shows me: null and I need it shows me 0,00
I've changed it to '00,0' then to 0 then to '0' I also created a varible to assign to the label with a 0,00 value but nothing happens.. it just still showing null. Thank you