ASKER
dataGridView1.Columns["YOUCOLUMNNAME"].DisplayIndex = 0
cmb.Items.Add("True")
cmb.Items.Add("False")
Dim dt as dataTable
'... fill the dt with results from other datasources
For Each Row In DT.Rows
cmb.Items.Add(Row("YOURCOLUMNINDATATABLE"))
Next
The .NET Framework is not specific to any one programming language; rather, it includes a library of functions that allows developers to rapidly build applications. Several supported languages include C#, VB.NET, C++ or ASP.NET.
TRUSTED BY
Open in new window
You chould be able to access the data via dataGridView1.datasource
hope that helps