private void ExportKohlsThumbnail()
 {
     if (APathSet.ExportImg)
     {
         try {
             Thumbnailer thN        = new Thumbnailer(swApp, APathSet);
             string[]    sht_fmts   = { Properties.Settings.Default.ShtFmtPath[0], Properties.Settings.Default.ShtFmtPath[1] };
             bool[]      monochrome = { false, true };
             thN.CreateThumbnails(sht_fmts, monochrome);
         } catch (ThumbnailerException thEx) {
             ErrMsg em = new ErrMsg(thEx);
             em.ShowDialog();
         } catch (Exception ex) {
             ErrMsg em = new ErrMsg(ex);
             em.ShowDialog();
         }
     }
 }