hello
I want to color the text in B4xTable
I want to color the text in B4xTable
B4X:
Do While rs.NextRow
Dim row(3) As Object
row(0) = rs.GetDouble("Cday")
row(1) = rs.GetString("CdayWeek")
if rs.GetString("CdayWeek") = "mon" then
'font color '---------->
else if rs.GetString("CdayWeek") = "Tu" then
'font color '----------->
else
'font color '----------->
end if
row(2) = rs.GetString("C_memo")
Data.Add(row)
Loop