Might be a bit of a silly question but what the hell. What is the correct method for binding data ?
Me.combobox1.DataSource = Me.dataset.Tables("Table1")
or
Me.combobox1.DataSource = Me.dataset.Tables("Table1").DefaultView
They both seem to produce the same results except that the DefaultView method allows you to sort the data etc.
So if I dont need to sort the data should I use defaultview or not or doesnt it matter...
Thanks
Me.combobox1.DataSource = Me.dataset.Tables("Table1")
or
Me.combobox1.DataSource = Me.dataset.Tables("Table1").DefaultView
They both seem to produce the same results except that the DefaultView method allows you to sort the data etc.
So if I dont need to sort the data should I use defaultview or not or doesnt it matter...
Thanks