This commit is contained in:
SchreiberM
2016-12-07 10:18:58 +01:00
parent 29abb10c1b
commit e809444d94
14 changed files with 418 additions and 87 deletions

View File

@@ -68,8 +68,10 @@ Public Class ClassWindreamDocGrid
End Try
Try
newRow("INWORK") = gridView.GetRowCellValue(row, "in work?")
SELECTED_INWORK = gridView.GetRowCellValue(row, "in work?")
Catch ex As Exception
newRow("INWORK") = False
SELECTED_INWORK = False
End Try
Try
Dim dpn = gridView.GetRowCellValue(row, "Displayname")
@@ -106,8 +108,10 @@ Public Class ClassWindreamDocGrid
End Try
Try
newRow("INWORK") = gridView.GetFocusedRowCellValue(gridView.Columns("in work?"))
SELECTED_INWORK = gridView.GetFocusedRowCellValue(gridView.Columns("in work?"))
Catch ex As Exception
newRow("INWORK") = False
SELECTED_INWORK = False
End Try
Try
Dim dpn = gridView.GetFocusedRowCellValue(gridView.Columns("Displayname"))