Compare commits
2 Commits
2.6.0-Rele
...
b526108d5d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b526108d5d | ||
|
|
daf1c16b30 |
@@ -44,6 +44,7 @@ Public Class frmValidator
|
|||||||
''' </summary>
|
''' </summary>
|
||||||
Private Property DT_COLUMNS_GRID As DataTable
|
Private Property DT_COLUMNS_GRID As DataTable
|
||||||
|
|
||||||
|
|
||||||
''' <summary>
|
''' <summary>
|
||||||
''' Contains all grid columns for the current profile which have an sql but don't have a reference to a control
|
''' Contains all grid columns for the current profile which have an sql but don't have a reference to a control
|
||||||
''' </summary>
|
''' </summary>
|
||||||
@@ -2914,7 +2915,16 @@ Public Class frmValidator
|
|||||||
' Load Document in Document Viewer
|
' Load Document in Document Viewer
|
||||||
Dim oFileName = $"{CURRENT_DOC_ID}.{Current_Document.Extension}"
|
Dim oFileName = $"{CURRENT_DOC_ID}.{Current_Document.Extension}"
|
||||||
If Not IsNothing(DocumentViewer1) Then
|
If Not IsNothing(DocumentViewer1) Then
|
||||||
DocumentViewer1.LoadFile(oFileName, New MemoryStream(Current_Document.Contents))
|
If (OPERATION_MODE_FS = ClassConstants.OpModeFS_PWM Or OPERATION_MODE_FS = ClassConstants.OpModeFS_IDBWM) Then
|
||||||
|
DocumentViewer1.LoadFile(Current_Document.FullPath)
|
||||||
|
'Erstmal auskommentiert
|
||||||
|
'DocumentViewer1.LoadFile(oFileName, New MemoryStream(Current_Document.Contents))
|
||||||
|
Else
|
||||||
|
'DocumentViewer1.LoadFile(oFileName, New MemoryStream(Current_Document.Contents))
|
||||||
|
|
||||||
|
|
||||||
|
End If
|
||||||
|
|
||||||
DocumentViewer1.RightOnlyView(USER_RIGHT_VIEW_ONLY) 'war auskommentiert.....WARUM?
|
DocumentViewer1.RightOnlyView(USER_RIGHT_VIEW_ONLY) 'war auskommentiert.....WARUM?
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user