Loading Data

  • Thread starter Thread starter Ryan Schoolman
  • Start date Start date
R

Ryan Schoolman

I have a dataset and have it connected to a combobox but, how do I load the
data into it?


--
Ryan Schoolman - Programmer & Application Architect
(e-mail address removed)

PC Legends
http://www.pclegends.com

[w] 715.839.6855
[c] 715.379.0878
[h] 715.855.9003
 
Hi Ryan,

Have you tried using the DataSource property of the ComboBox to populate
it with the data from your data set ?.
Set the DisplayMember property to the field that you would
like to display.

myComboBox.DataSource = dataSet.Tables["Authors"].DefaultView;
myComboBox.DisplayMember = "au_id";

Does this not work ?

Regards,
Aravind C
 
Back
Top