Changing Values without Firing Events
Hello, I have a headache. I have so many controls on this form and they all interact with each other, but there is one problem. I can't change the contents without triggering an event. For instance, I am displaying data from a DB and I put this:
Code:
chkTaking(0).Value = True
But because chkTaking(0) has a click event that is built into it, it runs when I say that which produces errors. Is there a way that I can change the .Value of the control without triggering its event?
Thanks a lot.