Vor Logging erweiterung in Tabelle Row Add
This commit is contained in:
@@ -380,6 +380,7 @@ Public Class ClassInit
|
|||||||
LOGGER.Debug("User Info:")
|
LOGGER.Debug("User Info:")
|
||||||
LOGGER.Debug("Language: [{0}]", USER_LANGUAGE)
|
LOGGER.Debug("Language: [{0}]", USER_LANGUAGE)
|
||||||
LOGGER.Debug("Username: [{0}]", USER_USERNAME)
|
LOGGER.Debug("Username: [{0}]", USER_USERNAME)
|
||||||
|
LOGGER.Debug("Environment.MachineName: [{0}]", Environment.MachineName)
|
||||||
|
|
||||||
Try
|
Try
|
||||||
USER_RIGHT_FILE_DELETE = IIf(IsDBNull(DT_CHECKUSER_MODULE.Rows(0).Item("USER_RIGHT_FILE_DEL")), False, DT_CHECKUSER_MODULE.Rows(0).Item("USER_RIGHT_FILE_DEL"))
|
USER_RIGHT_FILE_DELETE = IIf(IsDBNull(DT_CHECKUSER_MODULE.Rows(0).Item("USER_RIGHT_FILE_DEL")), False, DT_CHECKUSER_MODULE.Rows(0).Item("USER_RIGHT_FILE_DEL"))
|
||||||
|
|||||||
@@ -343,6 +343,10 @@ Namespace ControlCreator
|
|||||||
Private Sub View_PopupMenuShowing(sender As Object, e As PopupMenuShowingEventArgs)
|
Private Sub View_PopupMenuShowing(sender As Object, e As PopupMenuShowingEventArgs)
|
||||||
Dim view As GridView = TryCast(sender, GridView)
|
Dim view As GridView = TryCast(sender, GridView)
|
||||||
Dim oFocusedColumn As GridColumn = view.FocusedColumn
|
Dim oFocusedColumn As GridColumn = view.FocusedColumn
|
||||||
|
If IsNothing(oFocusedColumn) Then
|
||||||
|
MsgBox("Please focus a column first.", MsgBoxStyle.Information, "No Column focused")
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
Dim oColumnType As Type = oFocusedColumn.ColumnType
|
Dim oColumnType As Type = oFocusedColumn.ColumnType
|
||||||
Dim oColumnName As String = oFocusedColumn.FieldName
|
Dim oColumnName As String = oFocusedColumn.FieldName
|
||||||
|
|
||||||
|
|||||||
0
app/TaskFlow/frmValidator.v
Normal file
0
app/TaskFlow/frmValidator.v
Normal file
@@ -3585,11 +3585,16 @@ Public Class frmValidator
|
|||||||
For Each Zeile As Object In oValueFromSource
|
For Each Zeile As Object In oValueFromSource
|
||||||
MyValidationLogger.Debug($"vektorrow Value {Zeile.ToString}...")
|
MyValidationLogger.Debug($"vektorrow Value {Zeile.ToString}...")
|
||||||
oColValuesfromSource = Split(Zeile, PMDelimiter)
|
oColValuesfromSource = Split(Zeile, PMDelimiter)
|
||||||
|
'If oColValuesfromSource.Length >= 1 Then
|
||||||
|
' Continue For
|
||||||
|
'End If
|
||||||
Dim oNewRow = oDataSource.NewRow()
|
Dim oNewRow = oDataSource.NewRow()
|
||||||
MyValidationLogger.Debug("Creating new row..")
|
MyValidationLogger.Debug("Creating new row..")
|
||||||
|
|
||||||
For index = 0 To oDTColumnsPerDevExGrid.Rows.Count - 1
|
For index = 0 To oDTColumnsPerDevExGrid.Rows.Count - 1
|
||||||
|
Dim rawValue As String = If(index < oColValuesfromSource.Length, oColValuesfromSource(index), String.Empty)
|
||||||
|
Dim targetColumn As DataColumn = oDataSource.Columns(index)
|
||||||
|
|
||||||
MyValidationLogger.Debug("Column Index {0}", index)
|
MyValidationLogger.Debug("Column Index {0}", index)
|
||||||
If oColValuesfromSource.Length > index Then
|
If oColValuesfromSource.Length > index Then
|
||||||
MyValidationLogger.Debug("Value: {0}", oColValuesfromSource(index))
|
MyValidationLogger.Debug("Value: {0}", oColValuesfromSource(index))
|
||||||
|
|||||||
1352
app/TaskFlow/taskFLOW.vbproj
Normal file
1352
app/TaskFlow/taskFLOW.vbproj
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user