views:

66

answers:

3

Using VB.Net, I have a DataGridView with a ComboBox Column. What even do I use for when the user changes a selection in the ComboBox?

+1  A: 

SelectedValueChanged

Robert Harvey
A: 

.FormatedValue as in Grid.Item.FormatedValue instead of Value

bochur1
A: 

Check out the DataGridView FAQ! DataGridView FAQ

You will need to use the EditingControlShowing event.

0A0D