From 540f9f417676d43e863a5b426e9f4caffc397e5b Mon Sep 17 00:00:00 2001 From: Digital Data - Marlon Schreiber Date: Thu, 24 Feb 2022 11:27:43 +0100 Subject: [PATCH] MS --- GUIs.ZooFlow/frmFlowForm.vb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/GUIs.ZooFlow/frmFlowForm.vb b/GUIs.ZooFlow/frmFlowForm.vb index 8cfcf14e..d0bbbfb0 100644 --- a/GUIs.ZooFlow/frmFlowForm.vb +++ b/GUIs.ZooFlow/frmFlowForm.vb @@ -793,6 +793,7 @@ Public Class frmFlowForm If FileHandle.CheckDuplicateFiles(fileName, "FolderWatch/Scan") Then FileHandle.Decide_FileHandle(fileName, handleType) Else + IO.File.Delete(fileName) Logger.Info("Scanfolder Startup: File already exists:" & fileName) End If Next fileName @@ -1228,5 +1229,9 @@ Public Class frmFlowForm Private Sub BarButtonItem9_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem9.ItemClick frmGlobixBasicConfig.ShowDialog() End Sub + + Private Sub frmFlowForm_Shown(sender As Object, e As EventArgs) Handles Me.Shown + + End Sub End Class