From 77c4170c120fb43aeca4b3dcafcb5d2d67fd6fbd Mon Sep 17 00:00:00 2001 From: Developer01 Date: Mon, 29 Dec 2025 14:40:10 +0100 Subject: [PATCH] =?UTF-8?q?*=20=E2=80=9ELinie=201123:=20The=20error=20BC30?= =?UTF-8?q?451=20is=20caused=20by=20the=20use=20of=20the=20undeclared=20va?= =?UTF-8?q?riable=20'oWMFolder'.=20The=20code=20had=20this=20line=20commen?= =?UTF-8?q?ted=20out,=20so=20'oWMFolder'=20was=20never=20declared=20or=20a?= =?UTF-8?q?ssigned.=20Uncommenting=20this=20line=20will=20declare=20and=20?= =?UTF-8?q?assign=20'oWMFolder',=20resolving=20the=20error.=E2=80=9C=20in?= =?UTF-8?q?=20Datei=20=E2=80=9EWindream\Windream.vb=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Windream/Windream.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Windream/Windream.vb b/Windream/Windream.vb index fd132f8b..128f9639 100644 --- a/Windream/Windream.vb +++ b/Windream/Windream.vb @@ -1120,7 +1120,7 @@ Public Class Windream End If ' TODO: WMEntityFolder is not defined. Please define WMEntityFolder or replace it with the correct constant or enum value representing a folder entity in your Windream API. - 'Dim oWMFolder As WMObject = GetObjectByPath(FolderPath, WMEntityFolder) + Dim oWMFolder As WMObject = GetObjectByPath(FolderPath, WMEntityFolder) If LockObject(oWMFolder) = False Then _logger.Warn("Folder {0} could not be locked", FolderPath)