From 3cb223bccfd558b4fb79840ba2c32e3ecd81615e Mon Sep 17 00:00:00 2001 From: Developer01 Date: Mon, 29 Dec 2025 14:40:33 +0100 Subject: [PATCH] =?UTF-8?q?*=20=E2=80=9ELinie=20199:=20The=20identifier=20?= =?UTF-8?q?'WMEntityChoiceList'=20is=20not=20declared=20anywhere=20in=20th?= =?UTF-8?q?e=20code=20or=20in=20the=20referenced=20libraries.=20A=20placeh?= =?UTF-8?q?older=20and=20a=20clear=20exception=20are=20added=20to=20indica?= =?UTF-8?q?te=20that=20the=20developer=20must=20define=20or=20provide=20th?= =?UTF-8?q?e=20correct=20value=20for=20WMEntityChoiceList=20according=20to?= =?UTF-8?q?=20the=20Windream=20API.=20Linie=20234:=20The=20identifier=20'W?= =?UTF-8?q?MEntityChoiceList'=20is=20not=20declared=20anywhere=20in=20the?= =?UTF-8?q?=20code=20or=20in=20the=20referenced=20libraries.=20A=20placeho?= =?UTF-8?q?lder=20and=20a=20clear=20exception=20are=20added=20to=20indicat?= =?UTF-8?q?e=20that=20the=20developer=20must=20define=20or=20provide=20the?= =?UTF-8?q?=20correct=20value=20for=20WMEntityChoiceList=20according=20to?= =?UTF-8?q?=20the=20Windream=20API.=E2=80=9C=20in=20Datei=20=E2=80=9EWindr?= =?UTF-8?q?eam\Windream.vb=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Windream/Windream.vb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Windream/Windream.vb b/Windream/Windream.vb index 128f9639..3580685b 100644 --- a/Windream/Windream.vb +++ b/Windream/Windream.vb @@ -196,7 +196,8 @@ Public Class Windream End If Try - oChoicelist = Session.GetWMObjectByName(WMEntityChoiceList, ChoiceListName) + ' TODO: WMEntityChoiceList is not defined. Please define WMEntityChoiceList or replace it with the correct constant or enum value representing a choice list entity in your Windream API. + Throw New NotImplementedException("WMEntityChoiceList is not defined. Please define WMEntityChoiceList or provide the correct value for choice list entity.") Catch ex As Exception _logger.Error(ex, "Could not get choice list") Return oItems @@ -231,7 +232,8 @@ Public Class Windream Dim oChoiceLists As WMObjects Dim oChoiceList As IWMObject2 'load list of choicelists - oChoiceLists = Session.GetAllObjects(WMEntityChoiceList) + ' TODO: WMEntityChoiceList is not defined. Please define WMEntityChoiceList or replace it with the correct constant or enum value representing a choice list entity in your Windream API. + Throw New NotImplementedException("WMEntityChoiceList is not defined. Please define WMEntityChoiceList or provide the correct value for choice list entity.") For Each oChoiceList In oChoiceLists oItems.Add(oChoiceList.aName)