MS Notifications

This commit is contained in:
2022-10-14 13:13:25 +02:00
parent 790715d0a2
commit 22853b35c0
11 changed files with 648 additions and 71 deletions

View File

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

View File

@@ -1327,7 +1327,7 @@ Public Class Windream
End If
Catch ex As Exception
_logger.Error(ex)
Return False
Return "False"
End Try
Dim oWMStream = oWMObject.OpenStream("BinaryObject", WMObjectEditModeTypedData)
@@ -1354,10 +1354,10 @@ Public Class Windream
oWMObject.unlock()
_logger.Info($"WMFile has been exported to {tempFilename} ")
Return True
Return tempFilename
Catch ex As Exception
_logger.Error(ex)
Return False
Return "False"
End Try
End Function
Public Function Export_WMFile_DocID(WMPath As String, Exportpath As String, DocId As Integer)