Is there a way to set the value of the checkbox programmatically without firing the CheckChanged event?
The issue is that I need to set the value initially, but it wants to fire the event which is meant to be fired when the user changes the value.
My workaround is to set a property to false, and then in the event, return without doing anything, but this seems a hack.
Greg
You could use a flag or simply do not hook the event until after your initial value has been set.