MS DocuentViewer und ClipboardWatcher

This commit is contained in:
Developer01
2025-01-28 14:57:03 +01:00
parent 56f4327926
commit 4dfe64216d
14 changed files with 26 additions and 55 deletions

View File

@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.6.0.0")>
<Assembly: AssemblyFileVersion("1.6.0.0")>
<Assembly: AssemblyVersion("1.6.1.0")>
<Assembly: AssemblyFileVersion("1.6.1.0")>

View File

@@ -647,10 +647,10 @@ Public Class ProfileFilter
Dim oProcessList As New List(Of ProcessData)
For Each oRow As DataRow In ProcessDatatable.Rows
If oRow.Item("PROFILE_ID") = ProfileId Then
If oRow.Item("PROFIL_ID") = ProfileId Then
oProcessList.Add(New ProcessData() With {
.Guid = oRow.Item("GUID"),
.PROFILE_ID = oRow.Item("PROFILE_ID"),
.PROFILE_ID = oRow.Item("PROFIL_ID"),
.ProcessName = oRow.ItemEx("PROC_NAME", String.Empty)
})
End If