void wizardDeployment_ValidChangeTokenNotFound(object sender, InvalidChangeTokenEventArgs e)
 {
     if (!string.IsNullOrEmpty(e.EventMessage))
     {
         Console.WriteLine(string.Format("WARNING: {0}", e.EventMessage));
     }
 }
 void wizardDeployment_ValidChangeTokenNotFound(object sender, InvalidChangeTokenEventArgs e)
 {
     if (!string.IsNullOrEmpty(e.EventMessage))
     {
         Console.WriteLine(string.Format("WARNING: {0}", e.EventMessage));
     }
 }
 private void wizardDeployment_ValidChangeTokenNotFound(object sender, InvalidChangeTokenEventArgs e)
 {
     /* Theoretically this should never happen due to earlier validation. The only way this event will be raised is if a user has 
      * realised they can type into the comboboxes (a bug/design flaw!) and enters 'ExportChanges'.
      * We'll handle it anyway..
      */
     MessageBox.Show(
             e.EventMessage,
             "Unable to use incremental export", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
 }