Else If res.Rows.Size > 1 Then
#IF B4A
LogoutListCLV.DesignerLabel.TextSize = 30
#ELSE
LogoutListCLV.DesignerLabel.TextSize = 60
#End If
For Each M As Map In LogoutJobs
Lo = M.get("ID")
M.Put("TKID", Lo)
LogoutListCLV.AddTextItem($"${M.Get("Os_JobNum")} Rel: ${M.Get("Os_ReleaseNum")}${CRLF}Seq #: ${NumberFormat(M.Get("Os_SeqNum"), 1, 2)} - WC: ${M.Get("Os_WCCode")}"$, M)
Dim P As B4XView = xui.CreatePanel("")
P.SetLayoutAnimated(0, 0, 0, LogoutListCLV.AsView.Width, LogoutListCLV.AsView.Height / 10)
P.LoadLayout("picklogoutbtns")
P.SetColorAndBorder(xui.Color_ARGB(255, 89, 126, 137), 0, 0, 0)
#If B4A
MP.DCUTs.SetAutoSizeBasedOnText(ViewBtn)
MP.DCUTs.SetAutoSizeBasedOnText(LogoutBtn)
#End If
ViewBtn.Tag = M
LogoutBtn.Tag = M
LogoutListCLV.Add(P, "")
Next