Hi Lars,
You can try this
In the DataGridComboBox column class you can add
Public Event ComboSelectedIndexChanged()
Than you can make an event in that class for the SelectedIndexChanged which
has the row
RaiseEvent ComboSelecteIndexChanged()
Than in the form you have to make the combobox global (private) withevents,
than you can catch it. I did try it however did not look for side effects, I
saw it fires more than you probably want so that you should prevent too.
I hope this helps?
Cor