// ----------------------------------------------

        private void SaveThumbnailBatchToolStripMenuItemClick(object sender, EventArgs e)
        {
            try
            {
                ImageBatchSaverForm batchSaver = new ImageBatchSaverForm();
                batchSaver.ShowDialog(this);
            }
            catch (Exception ex)
            {
                this.ShowException(
                    string.Format("The thumbnail images could not be saved to the specified location.\r\n\r\nException Message:\r\n{0}", ex.Message),
                    ex.Source);
            }
        }
 // ----------------------------------------------
 private void SaveThumbnailBatchToolStripMenuItemClick(object sender, EventArgs e)
 {
     try
     {
         ImageBatchSaverForm batchSaver = new ImageBatchSaverForm();
         batchSaver.ShowDialog(this);
     }
     catch (Exception ex)
     {
         this.ShowException(
             string.Format("The thumbnail images could not be saved to the specified location.\r\n\r\nException Message:\r\n{0}", ex.Message),
             ex.Source);
     }
 }