Commit 07a7d082 authored by tsuji's avatar tsuji

ページ入力の誤入力修正機能を追加

parent f5a49be6
...@@ -118,6 +118,8 @@ namespace CSRender ...@@ -118,6 +118,8 @@ namespace CSRender
{ {
CustomMsgBox.Show(mainWindow, "指定されたファイルあるいはフォルダが存在しません。" + CustomMsgBox.Show(mainWindow, "指定されたファイルあるいはフォルダが存在しません。" +
"\nもう一度設定してください。", "The specified file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information); "\nもう一度設定してください。", "The specified file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information);
ResultConsole.Text += " 指定された対象ファイルあるいはフォルダを発見できませんでした\r\n";
ResultConsole.Text += "<TIFF変換中止>\r\n";
return; return;
} }
...@@ -126,6 +128,8 @@ namespace CSRender ...@@ -126,6 +128,8 @@ namespace CSRender
{ {
CustomMsgBox.Show(mainWindow, "指定されたリファレンスファイルあるいはフォルダが存在しません。" + CustomMsgBox.Show(mainWindow, "指定されたリファレンスファイルあるいはフォルダが存在しません。" +
"\nもう一度設定してください。", "The specified reference file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information); "\nもう一度設定してください。", "The specified reference file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information);
ResultConsole.Text += " 指定されたリファレンスファイルあるいはフォルダを発見できませんでした\r\n";
ResultConsole.Text += "<TIFF変換中止>\r\n";
return; return;
} }
...@@ -134,6 +138,8 @@ namespace CSRender ...@@ -134,6 +138,8 @@ namespace CSRender
{ {
CustomMsgBox.Show(mainWindow, "指定された作業フォルダが存在しません。" + CustomMsgBox.Show(mainWindow, "指定された作業フォルダが存在しません。" +
"\nもう一度設定してください。", "The specified reference file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information); "\nもう一度設定してください。", "The specified reference file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information);
ResultConsole.Text += " 指定された作業フォルダを発見できませんでした\r\n";
ResultConsole.Text += "<TIFF変換中止>\r\n";
return; return;
} }
...@@ -232,7 +238,7 @@ namespace CSRender ...@@ -232,7 +238,7 @@ namespace CSRender
{ {
ResultConsole.Text += "<変換開始>\r\n"; ResultConsole.Text += "<変換開始>\r\n";
ResultConsole.Text += "PDFを" + FileSelect.Text + "に変換します\r\n"; ResultConsole.Text += " PDFを" + FileSelect.Text + "に変換します\r\n";
ResultConsole.Text += "\r\n"; ResultConsole.Text += "\r\n";
//必要に応じてページ引数を指定 //必要に応じてページ引数を指定
...@@ -249,6 +255,8 @@ namespace CSRender ...@@ -249,6 +255,8 @@ namespace CSRender
{ {
CustomMsgBox.Show(mainWindow, "指定されたファイルあるいはフォルダが存在しません。" + CustomMsgBox.Show(mainWindow, "指定されたファイルあるいはフォルダが存在しません。" +
"\nもう一度TIFF出力する対象を設定してください。", "The specified file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information); "\nもう一度TIFF出力する対象を設定してください。", "The specified file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information);
ResultConsole.Text += " 指定された対象ファイルあるいはフォルダを発見できませんでした\r\n";
ResultConsole.Text += "<変換中止>\r\n";
return; return;
} }
...@@ -259,6 +267,8 @@ namespace CSRender ...@@ -259,6 +267,8 @@ namespace CSRender
{ {
CustomMsgBox.Show(mainWindow, "指定された作業フォルダが存在しません。" + CustomMsgBox.Show(mainWindow, "指定された作業フォルダが存在しません。" +
"\nもう一度設定してください。", "The specified reference file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information); "\nもう一度設定してください。", "The specified reference file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information);
ResultConsole.Text += " 指定された作業フォルダを発見できませんでした\r\n";
ResultConsole.Text += "<変換中止>\r\n";
return; return;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment