ListBox SelectedIndexChanged Firing Twice?

  • Thread starter Thread starter Doug
  • Start date Start date
D

Doug

Hi,

I wondering if anyone has noticed this and has a workaround. I've set up a
delegate for the SelectedIndexChange event and noticed that it is firing
twice - does nayone else have this"problem" and have a workaround for it?
Thanks in advance...

Doug
 
works properly for me --

sure you don't have some circular code in the event handler (or somewhere
else) which causes the event to fire twice
 
Doug said:
Hi,

I wondering if anyone has noticed this and has a workaround. I've set up a
delegate for the SelectedIndexChange event and noticed that it is firing
twice - does nayone else have this"problem" and have a workaround for it?
Thanks in advance...

Maybe in the move?
 
Ayende Rahien said:
up

Maybe in the move?

Its probably not but... last week i found a bug whereby i called a method
(hehe, java convert) more than once. The method put a listener on the
control causing multiple 'firings' to happen.
 
Back
Top