Hello,
I have a label added to scrollpane with this :
It should change the textcolor but it is not , the color is always white. What am I missing here ?
TY
I have a label added to scrollpane with this :
B4X:
Dim p As Pane
Dim sv As ScrollPane
sv.Initialize("sv")
p.Initialize("p")
p = sv.InnerNode
lblexvolume(ist).Initialize("lblexv")
lblexvolume(ist).Alignment="CENTER_LEFT"
lblexvolume(ist).Font=fx.CreateFont("TrebuchetMS","14",False,False)
lblexvolume(ist).Text="24H Vol: $ " & NumberFormat2(VOLUME24HOURTO ,1,2,0,True)
lblexvolume(ist).TextColor=fx.Colors.RGB(255,237,129)
p.AddNode(lblexvolume(ist),5,renkex(ist).top+30dip,240,28)
scrollexchange.InnerNode=p
It should change the textcolor but it is not , the color is always white. What am I missing here ?
TY