Compare commits

..

2 Commits

Author SHA1 Message Date
Jonathan Jenne
6d0810d285 Version 2.1.0.5 2020-05-27 10:47:55 +02:00
Jonathan Jenne
b145508a3d fix: class patterns using textbox instead of textedit 2020-05-27 10:45:56 +02:00
2 changed files with 4 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
Imports System.Text.RegularExpressions
Imports DevExpress.XtraEditors
Imports DigitalData.Controls.LookupGrid
Imports WINDREAMLib
@@ -208,9 +209,9 @@ Public Class ClassPatterns
LOGGER.Debug("Found Control [{0}], continuing with setting value..", oFoundControl.Name)
If TypeOf oFoundControl Is TextBox Then
If TypeOf oFoundControl Is TextEdit Then
Try
oValue = DirectCast(oFoundControl, TextBox).Text
oValue = DirectCast(oFoundControl, TextEdit).Text
Catch ex As Exception
LOGGER.Error(ex)
LOGGER.Warn("Control Value for TextBox [{0}] could not be retrieved!", oFoundControl.Name)

View File

@@ -33,7 +33,7 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("2.1.0.4")>
<Assembly: AssemblyVersion("2.1.0.5")>
<Assembly: AssemblyFileVersion("1.0.0.0")>
<Assembly: NeutralResourcesLanguageAttribute("")>