MS Verwaltung Doctype

This commit is contained in:
2022-03-04 14:18:23 +01:00
parent 35d129b2ce
commit 87619c9d9a
11 changed files with 250 additions and 206 deletions

View File

@@ -82,7 +82,7 @@ Public Class frmAdmin_Doctype
Private Sub GridView1_FocusedRowChanged(sender As Object, e As DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs) Handles GridView1.FocusedRowChanged
Dim oView As GridView = sender
SelSystitle = oView.GetFocusedRowCellValue(oView.Columns(2)).ToString()
SelSystitle = oView.GetFocusedRowCellValue(oView.Columns("SystemTitle")).ToString()
SelLanguage = oView.GetFocusedRowCellValue(oView.Columns("Language")).ToString()
BarButtonItemSaveChange.Enabled = False
End Sub