or
Dim datListProps As New DataSet
Dim sql As string = " SELECT gala_id_val_table FROM gala_mainTable "
AdaptSql = New OleDb.OleDbDataAdapter(sql, ConPubs)
AdaptSql.Fill(datListProps, "props_table")
Me.tabelaVotRadGridView.Columns.Add(lookUpColumn)
The following exception occurred in the RadGridView:
System.NotSupportedException: The list must be an IBindingList to AddNew. at System.Windows.Forms.CurrencyManager.AddNew() at Telerik.WinControls.UI.GridViewRowCollection.Add(Object[] values)
To replace this default dialog please handle the DataError event.
Edit: Please remove this post. It turns out I needed to use a BindableList<T>. It turns out the List<T> support is not very strong in Q3 2009.