View Single Post
  #2 (permalink)  
Old 03-15-2010, 09:04 AM
mjcoon mjcoon is offline
Basic4ppc Expert
 
Join Date: May 2008
Location: Berkshire, UK
Posts: 810
Awards Showcase
Beta Tester 
Total Awards: 1
Default

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.
Reply With Quote