I would call this a bug.
/this is the line of code that puts in the map:
IT is an SQL Server cursor.
I was using the cursor directly and it worked but since I was also saving the data decided to set the data using the map.
This was the workaround:
But still, it should work.
/this is the line of code that puts in the map:
B4X:
M.Put("Jr_Released", Crsr.GetInt("Jr_Released"))
I was using the cursor directly and it worked but since I was also saving the data decided to set the data using the map.
This was the workaround:
B4X:
Dim X As Int = M.Get("Jr_Released")
If X = 1 Then
SB.Append("HOT")
T.Style = ";-fx-control-inner-background:rgba(255,93,84,1)"
.
.
.