- `MouseWheelMode` im `DocumentViewer` auf vertikales Scrollen geändert. - Neue Parameter (`WM_SUFFIX`, `MAP_SHAREDRIVE`, `SavetoDrive`) für Dokumentenverarbeitung hinzugefügt. - `GridView1` durch `GridViewResult` ersetzt. - Schaltfläche `bbtnitemExportFiles` für Datei-Export hinzugefügt. - Logik für temporäre Kopien (`CopyWM2Temp`) in `frmDocumentResultList` implementiert. - Ressourcen und Layouts in mehreren Dateien aktualisiert. - Neue Schaltfläche `BarButtonItem6` in `frmSQLEditor` hinzugefügt.
33 lines
1.1 KiB
VB.net
33 lines
1.1 KiB
VB.net
Imports DigitalData.Modules.ZooFlow.Constants
|
|
|
|
Namespace DocumentResultList
|
|
Public Class Params
|
|
''' <summary>
|
|
''' WindowGuid is used to save layout data
|
|
''' </summary>
|
|
Public WindowGuid As String
|
|
Public WindowTitle As String = ""
|
|
Public Results As New List(Of DocumentResult)
|
|
Public ColumnNames As New ColumnNames
|
|
Public OperationModeOverride As OperationMode = OperationMode.None
|
|
Public ProfileGuid As Integer
|
|
Public ShowBackNavigation As Boolean = True
|
|
Public ShowFileList As Boolean = True
|
|
Public WM_SUFFIX As String = ""
|
|
Public MAP_SHAREDRIVE As String = ""
|
|
Public MAP_BLACKLIST As String
|
|
Public SavetoDrive As Boolean = False
|
|
End Class
|
|
|
|
Public Class DocumentResult
|
|
Inherits BaseResult
|
|
End Class
|
|
|
|
Public Class ColumnNames
|
|
Public ObjectIdColumn As String = "DocId"
|
|
Public FullPathColumn As String = "FULL_FILENAME"
|
|
Public FilenameColumn As String = "Name"
|
|
Public IconColumn As String = "ICON"
|
|
End Class
|
|
|
|
End Namespace |