MS Envelope Common DeleteFromDisk

This commit is contained in:
2024-03-13 14:43:05 +01:00
parent a2b0682a77
commit 47f924ad7e
2 changed files with 6 additions and 3 deletions

View File

@@ -369,11 +369,11 @@ Partial Public Class frmEnvelopeEditor
End If
System.IO.File.Move(pSourcePath, pDestinationPath)
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.Critical, "Unexpected error in FileMove")
MsgBox(ex.Message, MsgBoxStyle.Critical, "Unexpected error in MoveFileWithNetUse")
End Try
Else
MsgBox("Fehler beim Verbinden mit dem Netzwerkziel.", MsgBoxStyle.Critical)
MsgBox("Error while connecting to network: " & pDestinationPath, MsgBoxStyle.Critical, "Unexpected error in MoveFileWithNetUse")
End If
End Using
End Sub