I currently have a comboBox which is bound to DataSet from a database. The problem with it is that when i want to display the dataSet using a comboBox, it takes about 8 seconds for it to load the full dataSet into the comboBox. Would like to ask if there is any way to display only the first few data from the dataSet in the comboBox such that it is much faster?
I am currently using another thread to load the data into the comboBox and using DisplayMemberPath to display the contents of the dataSet into the comboBox.
Any suggestions would be welcomed! :)