I need to kick off a Sync() process whenever my windows form app is being closed. This sync's data between the local SQL instance and a network SQL instance.
What is the better event to place this in: Closed or Closing?
Are there any factors that might change it from one to the other, as far as being best practice?
As a bonus question: Is there any 'normal' way for the form to close without firing of these two events?