Dim S As New CostingDataSetTableAdapters.CurrenciesTableAdapter
S.Fill(
Me.CostingDataSet.Currencies)
CType(DataGridView1(1, 0), _
DataGridViewComboBoxCell).Items.AddRange( _
Me.CostingDataSet.Currencies(0).CurrencyName, _
Me.CostingDataSet.Currencies(1).CurrencyName)
i could not simulate a same situation with a typed dataset.
you could be doing one of these:
not filling table.,
the row contains a null value at this position.
or something similar.....