aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2024-12-16 18:05:43 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2024-12-16 18:05:43 +0300
commit571a5fd706dba7729299f02de3935a55a4179125 (patch)
treeaeeebe6192f09f6338c41ab190ab639d4f33dc05
parentb68a2b210760076f2f763bb7d5a0b51c908b2647 (diff)
Show no tables found infobox
-rw-r--r--RhSolutions.AddIn/Tools/OcrTool.cs11
1 files changed, 10 insertions, 1 deletions
diff --git a/RhSolutions.AddIn/Tools/OcrTool.cs b/RhSolutions.AddIn/Tools/OcrTool.cs
index ae460ca..e2d8ffb 100644
--- a/RhSolutions.AddIn/Tools/OcrTool.cs
+++ b/RhSolutions.AddIn/Tools/OcrTool.cs
@@ -28,7 +28,7 @@ internal class OcrTool : ITool
if (shot != null)
{
IEnumerable<object[,]> tables = await client.ProcessImage(shot);
- if (tables != null)
+ if (tables.Count() != 0)
{
foreach (var table in tables)
{
@@ -70,6 +70,15 @@ internal class OcrTool : ITool
app.ActiveSheet.Cells(currentCell.Row + rowCount + 1, currentCell.Column).Activate();
}
}
+ else
+ {
+ MessageBox.Show(@"В выделенном фрагменте не распознано ни одной таблицы.",
+ "Ошибка",
+ MessageBoxButtons.OK,
+ MessageBoxIcon.Information);
+ RhSolutionsAddIn.Excel.Visible = true;
+ return;
+ }
}
}
catch (Exception)