Bugfixing Logging

This commit is contained in:
Developer01
2025-07-18 15:41:45 +02:00
parent cfe631a568
commit e62741c0ac
21 changed files with 231 additions and 131 deletions

View File

@@ -453,7 +453,7 @@ Public Class frmRecordView
Exit Sub
End If
For Each row As DataRow In ClassDocGrid.DT_RESULTFILES.Rows
ClassHelper.File_open(row.Item("DOC_PATH"), 0)
ClassHelper.File_open(row.Item("DOC_PATH"), 0, 0)
Next
End Sub
@@ -464,7 +464,7 @@ Public Class frmRecordView
Exit Sub
End If
For Each row As DataRow In ClassDocGrid.DT_RESULTFILES.Rows
ClassHelper.File_open(row.Item("DOC_PATH"), 0)
ClassHelper.File_open(row.Item("DOC_PATH"), 0, 0)
Next
End Sub
@@ -741,7 +741,7 @@ Public Class frmRecordView
Exit Sub
End If
For Each row As DataRow In ClassDocGrid.DT_RESULTFILES.Rows
ClassHelper.File_open(row.Item("DOC_PATH"), row.Item("DOC_ID"))
ClassHelper.File_open(row.Item("DOC_PATH"), row.Item("DOC_ID"), 0)
Next
End Sub