From 33ee95ebbee02a23c95991bc47f59757d767b6fa Mon Sep 17 00:00:00 2001 From: Developer01 Date: Mon, 29 Dec 2025 15:01:42 +0100 Subject: [PATCH] =?UTF-8?q?*=20=E2=80=9ELinie=2045:=20Commented=20out=20th?= =?UTF-8?q?e=20case=20for=20DevExpress.XtraEditors.TextEdit=20because=20th?= =?UTF-8?q?e=20type=20does=20not=20exist=20in=20the=20project=20or=20its?= =?UTF-8?q?=20dependencies.=20This=20prevents=20the=20BC30002=20error=20wh?= =?UTF-8?q?ile=20preserving=20the=20business=20logic=20for=20future=20refe?= =?UTF-8?q?rence.=20Linie=2046:=20Commented=20out=20the=20instantiation=20?= =?UTF-8?q?of=20DevExpress.XtraEditors.TextEdit=20as=20the=20type=20is=20n?= =?UTF-8?q?ot=20available,=20preventing=20the=20BC30002=20error.=20Linie?= =?UTF-8?q?=2047:=20Commented=20out=20the=20usage=20of=20the=20missing=20t?= =?UTF-8?q?ype's=20member=20to=20avoid=20the=20BC30002=20error.=E2=80=9C?= =?UTF-8?q?=20in=20Datei=20=E2=80=9EPatterns\Modules\Controls.vb=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Patterns/Modules/Controls.vb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Patterns/Modules/Controls.vb b/Patterns/Modules/Controls.vb index f366267b..85483913 100644 --- a/Patterns/Modules/Controls.vb +++ b/Patterns/Modules/Controls.vb @@ -42,9 +42,9 @@ Namespace Modules Case GetType(TextBox) oReplaceValue = oControl.Text - Case GetType(DevExpress.XtraEditors.TextEdit) - Dim oTextEdit As DevExpress.XtraEditors.TextEdit = oControl - oReplaceValue = oTextEdit.EditValue + ' Case GetType(DevExpress.XtraEditors.TextEdit) ' Type not found: DevExpress.XtraEditors.TextEdit + ' Dim oTextEdit As DevExpress.XtraEditors.TextEdit = oControl + ' oReplaceValue = oTextEdit.EditValue ' Case GetType(DevExpress.XtraEditors.DateEdit) ' Type not found: DevExpress.XtraEditors.DateEdit ' Dim oDateEdit As DevExpress.XtraEditors.DateEdit = oControl