In my log reader, I have log items with 4 columns: status, path, datetime, message. The message may be multiline with CR used as the line delimiter. How do I get these multiline cells to appear in full rather than just the first line? Currently I'm just using this to load up the tableview:
Bruce/bugmagnet
Bruce/bugmagnet
B4X:
Dim flines As List
flines.Initialize2(Regex.Split("\x0D\x0A", File.ReadString(fdir, flist.Get(f))))
For j = 0 To flines.Size -1
Dim Row() As Object = Regex.Split("\t", flines.Get(j))
If Row.Length = 4 Then
TableView1.Items.Add(Row)
End If
Next