Exemple #1
0
 static OutlookDestination()
 {
     if (EmailConfigHelper.HasOutlook())
     {
         isActiveFlag = true;
     }
     exePath = PluginUtils.GetExePath("OUTLOOK.EXE");
     if (exePath != null && File.Exists(exePath))
     {
         applicationIcon = PluginUtils.GetExeIcon(exePath, 0);
         WindowDetails.AddProcessToExcludeFromFreeze("outlook");
         if (conf.OutlookAllowExportInMeetings)
         {
             meetingIcon = PluginUtils.GetExeIcon(exePath, 2);
         }
     }
     else
     {
         exePath = null;
     }
     if (exePath == null)
     {
         isActiveFlag = false;
     }
 }
 static PowerpointDestination()
 {
     exePath = PluginUtils.GetExePath("POWERPNT.EXE");
     if (exePath != null && File.Exists(exePath))
     {
         WindowDetails.AddProcessToExcludeFromFreeze("powerpnt");
     }
     else
     {
         exePath = null;
     }
 }
Exemple #3
0
 static ExcelDestination()
 {
     ExePath = PluginUtils.GetExePath("EXCEL.EXE");
     if (ExePath != null && File.Exists(ExePath))
     {
         WindowDetails.AddProcessToExcludeFromFreeze("excel");
     }
     else
     {
         ExePath = null;
     }
 }
 static OneNoteDestination()
 {
     exePath = PluginUtils.GetExePath("ONENOTE.EXE");
     if (exePath != null && File.Exists(exePath))
     {
         WindowDetails.AddProcessToExcludeFromFreeze("onenote");
     }
     else
     {
         exePath = null;
     }
 }
Exemple #5
0
 static ExcelDestination()
 {
     exePath = PluginUtils.GetExePath("EXCEL.EXE");
     if (exePath != null && File.Exists(exePath))
     {
         applicationIcon = PluginUtils.GetExeIcon(exePath, 0);
         workbookIcon    = PluginUtils.GetExeIcon(exePath, 1);
         WindowDetails.AddProcessToExcludeFromFreeze("excel");
     }
     else
     {
         exePath = null;
     }
 }
Exemple #6
0
 static OutlookDestination()
 {
     if (EmailConfigHelper.HasOutlook())
     {
         isActiveFlag = true;
     }
     exePath = PluginUtils.GetExePath("OUTLOOK.EXE");
     if (exePath != null && File.Exists(exePath))
     {
         WindowDetails.AddProcessToExcludeFromFreeze("outlook");
     }
     else
     {
         exePath = null;
     }
     if (exePath == null)
     {
         isActiveFlag = false;
     }
 }