tags:

views:

31

answers:

2

I have a list box that loads data from MS ACCESS but i want to filer the words..

The O/P of listbox

bmw yamaha suzuki audi bmw suzuki

This is how it dipsplays but actually i want like this

bmw yamaha suzuki audi

How can we do this in vb.net

A: 

If you are using a SQl statement to load the data you can use the distinct keyword:

Select distinct name from mytable

Loki Stormbringer
A: 

Wow thanks in ever knew about distinct thanks a lot.

zone007