hello
i have made a combobox control whose datasource is a table from a dataset.
how can i add an item at the begining of the combobox such as (select a country..)
thank you
Printable View
hello
i have made a combobox control whose datasource is a table from a dataset.
how can i add an item at the begining of the combobox such as (select a country..)
thank you
Ther are a couple ways to approach this. You could add a row to the dataset and use a dataview to sort the data. Or you could switch your dataset to a data reader and do this:
http://www.vbforums.com/showthread.php?t=317475
post your code so I can see what our doing.