vote up 1 vote down star

How do I prevent code from executing in the SelectedValueChange event of a combobox when the combobox is being loaded for the first time? I need the code to execute when the user has selected a new value.

flag

3 Answers

vote up 2 vote down check

You have a few options.

  1. Rather than letting the designer hookup the event handler you can do it yourself after loading

  2. You can set a flag in your application for "loading" and put code inside your SelectedValueChange event to check !loading before continuing.

Personally I would just add the handler after load if it is causing issues.

link|flag
I just removed the handler and then hooked it up after loading – scantwell71 Jan 16 at 21:57
vote up 4 vote down

If you only want some code to be executed when the user changes the combobox you can subscribe to SelectionChangeCommitted instead of SelectionChanged. "SelectionChangeCommitted " doesn't get called when the combobox selection is changed programmatically.

link|flag
I know this an old post, but this tip helped me quite a lot!! thank you! – Roel Aug 10 at 15:03
+1 this should be the accepted answer – dotjoe Sep 18 at 17:10
vote up 0 vote down

I prefer the SelectedIndexChanged event as its behaviour seems to better model that of the underlying Win32 API making it predictable.

Some of the more esoteric events offered by the controls simply do not model the behaviour that one would expect from their name.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.