Logging und Vorbereitung MAPPING wie in taskFLOW

This commit is contained in:
Developer01
2026-05-04 16:40:14 +02:00
parent b586bf496b
commit 734e056248
15 changed files with 303 additions and 268 deletions

View File

@@ -1,7 +1,6 @@
Imports System.ComponentModel
Imports System.Drawing.Design
Imports System.Windows.Forms.Design
Imports DigitalData.Modules.Language
Public Class RegexEditor
Inherits UITypeEditor
@@ -12,7 +11,7 @@ Public Class RegexEditor
Public Overrides Function EditValue(context As ITypeDescriptorContext, provider As IServiceProvider, value As Object) As Object
Dim oService As IWindowsFormsEditorService = TryCast(provider.GetService(GetType(IWindowsFormsEditorService)), IWindowsFormsEditorService)
Dim oRegexString As String = Utils.NotNull(value, String.Empty)
Dim oRegexString As String = If(value IsNot Nothing, value.ToString(), String.Empty)
If oService IsNot Nothing Then
Using oform As New frmRegexEditor(oRegexString)