Compare commits

...

2 Commits

Author SHA1 Message Date
Jonathan Jenne
c86402f389 Version 2.3.9.10 2021-04-29 12:33:25 +02:00
Jonathan Jenne
2a571a91ab Add Lookup Grid Localization 2021-04-29 12:33:21 +02:00
2 changed files with 6 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ Imports System.Runtime.InteropServices
<Assembly: AssemblyCompany("Digital Data")>
<Assembly: AssemblyProduct("Global Indexer")>
<Assembly: AssemblyCopyright("Copyright © 2021")>
<Assembly: AssemblyTrademark("2398")>
<Assembly: AssemblyTrademark("23910")>
<Assembly: ComVisible(False)>
@@ -33,7 +33,7 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("2.3.9.9")>
<Assembly: AssemblyVersion("2.3.9.10")>
<Assembly: AssemblyFileVersion("1.0.0.0")>
<Assembly: NeutralResourcesLanguageAttribute("")>

View File

@@ -8,6 +8,7 @@ Imports System.DirectoryServices
Imports DigitalData.Modules.Logging
Imports DigitalData.Controls.LookupGrid
Imports DigitalData.GUIs.GlobalIndexer
Imports DevExpress.XtraEditors.Controls
Public Class frmIndex
#Region "+++++ Variablen ++++++"
@@ -73,6 +74,8 @@ Public Class frmIndex
' Fügen Sie Initialisierungen nach dem InitializeComponent()-Aufruf hinzu.
_Logger = LOGCONFIG.GetLogger()
Localizer.Active = New LookupGridLocalizer()
End Sub
Public Sub DisposeViewer()
@@ -1764,6 +1767,7 @@ Public Class frmIndex
If DefaultValue Is Nothing Then
DefaultValue = GetPlaceholderValue(oRow.Item("DEFAULT_VALUE"), CURRENT_WORKFILE, USER_SHORTNAME)
End If
Select Case oDataType
Case "BOOLEAN"
Dim chk As CheckBox = oControls.AddCheckBox(oControlName, oControlPosition, DefaultValue, oRow.Item("COMMENT").ToString)