* „Linie 45: Commented out the case for DevExpress.XtraEditors.TextEdit because the type does not exist in the project or its dependencies. This prevents the BC30002 error while preserving the business logic for future reference.

Linie 46: Commented out the instantiation of DevExpress.XtraEditors.TextEdit as the type is not available, preventing the BC30002 error.
Linie 47: Commented out the usage of the missing type's member to avoid the BC30002 error.“ in Datei „Patterns\Modules\Controls.vb“
This commit is contained in:
Developer01
2025-12-29 15:01:42 +01:00
parent 6b615c9b7b
commit 33ee95ebbe

View File

@@ -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