|
@@ -43,7 +43,6 @@ namespace PDF_Master.Helper
|
|
|
result = await Task.Run(() => wordConverter.Convert(outputFolder, ref outputFileName, wordOptions, pageArray, ref error, getProgress));
|
|
|
if (result)
|
|
|
{
|
|
|
- Trace.WriteLine("wdasdasda"+File.Exists(outputFileName.Replace("/", "\\")));
|
|
|
if (!String.IsNullOrEmpty(outputFileName) && File.Exists(outputFileName.Replace("/", "\\")))
|
|
|
{
|
|
|
CommonHelper.ShowFileBrowser(outputFileName.Replace("/", "\\"));
|
|
@@ -111,7 +110,7 @@ namespace PDF_Master.Helper
|
|
|
AlertsMessage alertsMessage = new AlertsMessage();
|
|
|
alertsMessage.ShowDialog("", " No Table", App.ServiceLoader.GetString("Text_ok"));
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|
|
@@ -191,7 +190,10 @@ namespace PDF_Master.Helper
|
|
|
|
|
|
}
|
|
|
else
|
|
|
- MessageBox.Show("None CSV");
|
|
|
+ {
|
|
|
+ AlertsMessage alertsMessage = new AlertsMessage();
|
|
|
+ alertsMessage.ShowDialog("", " No Table", App.ServiceLoader.GetString("Text_ok"));
|
|
|
+ }
|
|
|
|
|
|
}
|
|
|
}
|
|
@@ -230,7 +232,7 @@ namespace PDF_Master.Helper
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
- public static void ImageMagickPDFToImage(string imageType, string filePath, string outputFolder, string outputFileName, ref string FileName,double density=150)
|
|
|
+ public static void ImageMagickPDFToImage(string imageType, string filePath, string outputFolder, string outputFileName, ref string FileName, double density = 150)
|
|
|
{
|
|
|
FileName = CommonHelper.CreateFolder(outputFolder + "\\" + outputFileName);
|
|
|
ZipFile.ExtractToDirectory(filePath, FileName);
|