In VB.NET I've been trying to find something to fire an event based solely on selecting a new item from a combobox drop down list, not just the "drop-down" event.
I've tried SelectedValueChanged, TextChanged, ValueMemberChanged, and DisplayMemberChanged events, but have had only inconsistent behavior.
The combobox data is bound to a dataset datatable (OleDb), and gets its lookup values from another dataset datatable using DataSource, DisplayMember, and ValueMember properties for the combobox control.
If there isn't an event handler, is there "simple, short, and sweet" way to check if a selection has actually been made? I'm hoping I merely overlooked it.
I've tried SelectedValueChanged, TextChanged, ValueMemberChanged, and DisplayMemberChanged events, but have had only inconsistent behavior.
The combobox data is bound to a dataset datatable (OleDb), and gets its lookup values from another dataset datatable using DataSource, DisplayMember, and ValueMember properties for the combobox control.
If there isn't an event handler, is there "simple, short, and sweet" way to check if a selection has actually been made? I'm hoping I merely overlooked it.