Compare commits
2 Commits
b91df1f921
...
16de651395
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
16de651395 | ||
|
|
37e678c32f |
@@ -13,7 +13,7 @@ Imports System.Runtime.InteropServices
|
||||
<Assembly: AssemblyCompany("Digital Data")>
|
||||
<Assembly: AssemblyProduct("TaskFlow")>
|
||||
<Assembly: AssemblyCopyright("Copyright © Digital Data 2023")>
|
||||
<Assembly: AssemblyTrademark("2.4.5.0")>
|
||||
<Assembly: AssemblyTrademark("2.4.6.0")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
|
||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("2.4.5.0")>
|
||||
<Assembly: AssemblyVersion("2.4.6.0")>
|
||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||
|
||||
@@ -974,25 +974,6 @@ Public Class frmValidator
|
||||
|
||||
Dim oGrid = ControlCreator.CreateExistingGridControl(oControlRow, oFilteredDatatable, False)
|
||||
|
||||
AddHandler oGrid.ProcessGridKey, Sub(ByVal _sender As Object, ByVal e As KeyEventArgs)
|
||||
If e.KeyCode = Keys.Tab Then
|
||||
Dim gridControl = TryCast(_sender, GridControl)
|
||||
Dim view = TryCast(gridControl.FocusedView, Views.Base.ColumnView)
|
||||
|
||||
If (e.Modifiers = Keys.None And view.IsNewItemRow(view.FocusedRowHandle) _
|
||||
And view.FocusedColumn.VisibleIndex = view.VisibleColumns.Count - 1) Then
|
||||
If view.IsEditing Then
|
||||
view.CloseEditor()
|
||||
Me.SelectNextControl(gridControl, e.Modifiers = Keys.None, True, True, True)
|
||||
e.Handled = True
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
End Sub
|
||||
|
||||
|
||||
|
||||
|
||||
oMyControl = oGrid
|
||||
Case "LINE"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user