I imagine that you want to display three fields from a single record/row.
In which case the code might be
Code:
ListboxView1.Add(Reader.GetValue(0) & "|" & Reader.GetValue(1) & "|" & Reader.GetValue(2))
if those fields are numbers 0, 1 and 2.
HTH, Mike.