Hi,
VS2013, VB. I successfully loaded a ComboBox by doing the following:
FacultyTableAdapter.Fill(abcDataSet.Table1) Dim table1Info As System.Data.EnumerableRowCollection = From tblInfo In abcDataSet.Table1 Select tblInfo For Each tRow As abcDataSet.Table1Row In table1Info ComboBox1.Items.Add(tRow.name) Next
This seems to work fine.
My question is:
"Can this be accomplished by binding the ComboBox text field to the DataSet table in the Properties Window?". What steps do I need to follow, and which method is better? I haven't been successful with that process.
Thanks.
Best Regards,
Alan