Failing to handle event calls

wade

New member
Joined
Sep 28, 2006
Messages
2
Programming Experience
1-3
I am having an issue where I am handling an event and while I am handling that event another call to that event is raised. Right now it seems that I have no way to queue up these event calls. Is this true? Any help would be appreciated.
 
With vb2005 changing for instance the value of combobox.text = "anything"

will fire an event for the changing of thattext. If you're inside that very

event it can get recursive. Sometimes you need to set a flag that will

be caught by the changetext event and made to exit the sub before

another change reiterates.
 
Back
Top