Version 3.2.1

This commit is contained in:
Jonathan Jenne 2021-05-07 12:18:08 +02:00
parent 3c186e39a4
commit 028690308d
2 changed files with 4 additions and 2 deletions

View File

@ -173,6 +173,8 @@ Public Class RepositoryItemLookupControl3
NullText = String.Format(_R.GetString("LookupControl_NoRecords")) NullText = String.Format(_R.GetString("LookupControl_NoRecords"))
Case Else Case Else
NullText = Values.FirstOrDefault() NullText = Values.FirstOrDefault()
' JJ at 07.05.2021
' Setting the EditValue Is crucial for making the Control work as a Cell Editor!!!
OwnerEdit.EditValue = Values.FirstOrDefault() OwnerEdit.EditValue = Values.FirstOrDefault()
End Select End Select
End If End If

View File

@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben: ' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")> ' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("3.2.0.0")> <Assembly: AssemblyVersion("3.2.1.0")>
<Assembly: AssemblyFileVersion("3.2.0.0")> <Assembly: AssemblyFileVersion("3.2.1.0")>