asked on
lstCustomers.Items.Add("Cust ID" & ControlChars.Tab & "F. Name" & ControlChars.Tab & _
"L. Name" & ControlChars.Tab & "City" & ControlChars.Tab & "State")
lstCustomers.Items.Add("-------" & ControlChars.Tab & "-------" & ControlChars.Tab & _
"-------" & ControlChars.Tab & "-------" & ControlChars.Tab & "-------")
' ADD CUSTOMERS TO lstCustomers
For Each customer In customers
lstCustomers.Items.Add(customer.CustomerID & ControlChars.Tab & _
customer.FirstName & ControlChars.Tab & _
customer.LastName & ControlChars.Tab & _
customer.State & ControlChars.Tab & _
customer.City)
Next