I am loading my searchview from a csv file that has many columns, I only want to load the first three.
members becomes a very large file with lots for information not needed for the search.
Is there any way to limit the file.readlist to only the first three columns of the MBRS.csv file?
If you need more code let me know.
The information is loaded into a database from the same MBRS.csv if I could get the members out of there I think it would work better.
B4X:
If FirstTime Then
Dim members As List
members = File.ReadList(File.DirAssets, "MBRS.csv")
index = SV1.SetItems(members)
Else
SV1.SetIndex(index)
End If
Is there any way to limit the file.readlist to only the first three columns of the MBRS.csv file?
If you need more code let me know.
The information is loaded into a database from the same MBRS.csv if I could get the members out of there I think it would work better.
Last edited: