Hi,
> I'm trying to use a DataGridView to list a number of artifacts from a
> DataTable. As there can be duplicate instances of one artifact stored on
[quoted text clipped - 18 lines]
> or
> edited.
The basic idea is to have two BindingSource's (linked to the same lookup
table). One is filtered on the fly, the other one is always unfiltered.
When DataGridView.CellBeginEdit is fired, you (re)filter the filtered
BindingSource and assign it to ComboBoxCell.DataSource.
When DataGridView.CellEndEdit is fired, you assign the unfiltered
BindingSource back to the ComboBoxCell.DataSource.
Have a look at the thread in this newsgroup from a week ago:
http://tinyurl.com/94osm
And this one:
http://tinyurl.com/77rlp
HTH,
Greetings
> Can this be done, or are there other techniques to achive the result I'm
> looking for.