G
Guest
I have a form with a long list of questions. Most controls have events that detect when a value changes, which validates the form and possibly changes some other values.... Is there an easy way to disable all Control/Form events from firing as a result of anything done within a certain block of code
I have done something like this before, but I seem to remember the windows.forms having a nice and easy way to do this. The only way I can think to do it now is to have a bool flag "isUserEvent" that I set to false at the beginning of a change event and back to true at the end, then each answer change event checks the flag before doing anything
Thanks
--Oran
I have done something like this before, but I seem to remember the windows.forms having a nice and easy way to do this. The only way I can think to do it now is to have a bool flag "isUserEvent" that I set to false at the beginning of a change event and back to true at the end, then each answer change event checks the flag before doing anything
Thanks
--Oran