Logging und Vorbereitung MAPPING wie in taskFLOW
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user