Compare commits
2 Commits
7716a04452
...
1c35c891a0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1c35c891a0 | ||
|
|
160040535d |
@@ -32,7 +32,7 @@ Public Class ProfileSearches
|
|||||||
_Environment = pEnvironment
|
_Environment = pEnvironment
|
||||||
_ClipboardContents = pClipboardContents
|
_ClipboardContents = pClipboardContents
|
||||||
Try
|
Try
|
||||||
If _Environment.Service.IsActive = True Then
|
If _Environment.Service.Client.IsOnline = True Then
|
||||||
Try
|
Try
|
||||||
Dim oSplit() As String = _Environment.Service.Address.Split(":")
|
Dim oSplit() As String = _Environment.Service.Address.Split(":")
|
||||||
Dim oAppServerAddress As String = oSplit(0)
|
Dim oAppServerAddress As String = oSplit(0)
|
||||||
@@ -90,7 +90,7 @@ Public Class ProfileSearches
|
|||||||
Private Function DoLoadDocumentSearches(ProfileId As Integer) As List(Of Search)
|
Private Function DoLoadDocumentSearches(ProfileId As Integer) As List(Of Search)
|
||||||
Dim oSQL As String = $"SELECT * FROM TBCW_PROF_DOC_SEARCH WHERE ACTIVE = 1 AND PROFILE_ID = {ProfileId} ORDER BY TAB_INDEX"
|
Dim oSQL As String = $"SELECT * FROM TBCW_PROF_DOC_SEARCH WHERE ACTIVE = 1 AND PROFILE_ID = {ProfileId} ORDER BY TAB_INDEX"
|
||||||
Dim oSearchesDataTable As DataTable
|
Dim oSearchesDataTable As DataTable
|
||||||
If _Environment.Service.IsActive = True Then
|
If _Environment.Service.Client.IsOnline = True Then
|
||||||
Dim oTableResult As TableResult = _Client.GetDatatableByName("TBCW_PROF_DOC_SEARCH", $"PROFILE_ID = {ProfileId} AND ACTIVE = 1", "TAB_INDEX")
|
Dim oTableResult As TableResult = _Client.GetDatatableByName("TBCW_PROF_DOC_SEARCH", $"PROFILE_ID = {ProfileId} AND ACTIVE = 1", "TAB_INDEX")
|
||||||
oSearchesDataTable = oTableResult.Table
|
oSearchesDataTable = oTableResult.Table
|
||||||
If oSearchesDataTable Is Nothing Then
|
If oSearchesDataTable Is Nothing Then
|
||||||
@@ -157,7 +157,7 @@ Public Class ProfileSearches
|
|||||||
Try
|
Try
|
||||||
Dim oSQL As String = $"SELECT * FROM TBCW_PROF_DATA_SEARCH WHERE ACTIVE = 1 AND PROFILE_ID = {ProfileId} ORDER BY TAB_INDEX"
|
Dim oSQL As String = $"SELECT * FROM TBCW_PROF_DATA_SEARCH WHERE ACTIVE = 1 AND PROFILE_ID = {ProfileId} ORDER BY TAB_INDEX"
|
||||||
Dim oSearchesDataTable As DataTable
|
Dim oSearchesDataTable As DataTable
|
||||||
If _Environment.Service.IsActive = True Then
|
If _Environment.Service.Client.IsOnline = True Then
|
||||||
Dim oTableResult As TableResult = _Client.GetDatatableByName("TBCW_PROF_DATA_SEARCH", $"PROFILE_ID = {ProfileId} AND ACTIVE = 1", "TAB_INDEX")
|
Dim oTableResult As TableResult = _Client.GetDatatableByName("TBCW_PROF_DATA_SEARCH", $"PROFILE_ID = {ProfileId} AND ACTIVE = 1", "TAB_INDEX")
|
||||||
oSearchesDataTable = oTableResult.Table
|
oSearchesDataTable = oTableResult.Table
|
||||||
If oSearchesDataTable Is Nothing Then
|
If oSearchesDataTable Is Nothing Then
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ Namespace DocumentResultList
|
|||||||
Public OperationModeOverride As OperationMode = OperationMode.None
|
Public OperationModeOverride As OperationMode = OperationMode.None
|
||||||
Public ProfileGuid As Integer
|
Public ProfileGuid As Integer
|
||||||
Public ShowBackNavigation As Boolean = True
|
Public ShowBackNavigation As Boolean = True
|
||||||
|
Public ShowFileList As Boolean = True
|
||||||
End Class
|
End Class
|
||||||
|
|
||||||
Public Class DocumentResult
|
Public Class DocumentResult
|
||||||
|
|||||||
30
GUIs.Common/frmDocumentResultList.Designer.vb
generated
30
GUIs.Common/frmDocumentResultList.Designer.vb
generated
@@ -107,7 +107,7 @@ Partial Class frmDocumentResultList
|
|||||||
Me.DockPanelMetadata = New DevExpress.XtraBars.Docking.DockPanel()
|
Me.DockPanelMetadata = New DevExpress.XtraBars.Docking.DockPanel()
|
||||||
Me.DockPanel3_Container = New DevExpress.XtraBars.Docking.ControlContainer()
|
Me.DockPanel3_Container = New DevExpress.XtraBars.Docking.ControlContainer()
|
||||||
Me.CtrlObjectPropertyDialog = New DigitalData.GUIs.Common.ctrlObjectPropertyDialog()
|
Me.CtrlObjectPropertyDialog = New DigitalData.GUIs.Common.ctrlObjectPropertyDialog()
|
||||||
Me.DockPanelDocViewer = New DevExpress.XtraBars.Docking.DockPanel()
|
Me.DockPanelPreview = New DevExpress.XtraBars.Docking.DockPanel()
|
||||||
Me.DockPanel1_Container = New DevExpress.XtraBars.Docking.ControlContainer()
|
Me.DockPanel1_Container = New DevExpress.XtraBars.Docking.ControlContainer()
|
||||||
Me.SvgImageCollection1 = New DevExpress.Utils.SvgImageCollection(Me.components)
|
Me.SvgImageCollection1 = New DevExpress.Utils.SvgImageCollection(Me.components)
|
||||||
CType(Me.SplitContainerControl1, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.SplitContainerControl1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
@@ -151,7 +151,7 @@ Partial Class frmDocumentResultList
|
|||||||
CType(Me.EmptySpaceItem1, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.EmptySpaceItem1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
Me.DockPanelMetadata.SuspendLayout()
|
Me.DockPanelMetadata.SuspendLayout()
|
||||||
Me.DockPanel3_Container.SuspendLayout()
|
Me.DockPanel3_Container.SuspendLayout()
|
||||||
Me.DockPanelDocViewer.SuspendLayout()
|
Me.DockPanelPreview.SuspendLayout()
|
||||||
Me.DockPanel1_Container.SuspendLayout()
|
Me.DockPanel1_Container.SuspendLayout()
|
||||||
CType(Me.SvgImageCollection1, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.SvgImageCollection1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
Me.SuspendLayout()
|
Me.SuspendLayout()
|
||||||
@@ -701,7 +701,7 @@ Partial Class frmDocumentResultList
|
|||||||
'DockManager1
|
'DockManager1
|
||||||
'
|
'
|
||||||
Me.DockManager1.Form = Me
|
Me.DockManager1.Form = Me
|
||||||
Me.DockManager1.RootPanels.AddRange(New DevExpress.XtraBars.Docking.DockPanel() {Me.DockPanelFileList, Me.panelContainerStatus, Me.DockPanelDocViewer})
|
Me.DockManager1.RootPanels.AddRange(New DevExpress.XtraBars.Docking.DockPanel() {Me.DockPanelFileList, Me.panelContainerStatus, Me.DockPanelPreview})
|
||||||
Me.DockManager1.TopZIndexControls.AddRange(New String() {"DevExpress.XtraBars.BarDockControl", "DevExpress.XtraBars.StandaloneBarDockControl", "System.Windows.Forms.MenuStrip", "System.Windows.Forms.StatusStrip", "System.Windows.Forms.StatusBar", "DevExpress.XtraBars.Ribbon.RibbonStatusBar", "DevExpress.XtraBars.Ribbon.RibbonControl", "DevExpress.XtraBars.Navigation.OfficeNavigationBar", "DevExpress.XtraBars.Navigation.TileNavPane", "DevExpress.XtraBars.TabFormControl", "DevExpress.XtraBars.FluentDesignSystem.FluentDesignFormControl", "DevExpress.XtraBars.ToolbarForm.ToolbarFormControl"})
|
Me.DockManager1.TopZIndexControls.AddRange(New String() {"DevExpress.XtraBars.BarDockControl", "DevExpress.XtraBars.StandaloneBarDockControl", "System.Windows.Forms.MenuStrip", "System.Windows.Forms.StatusStrip", "System.Windows.Forms.StatusBar", "DevExpress.XtraBars.Ribbon.RibbonStatusBar", "DevExpress.XtraBars.Ribbon.RibbonControl", "DevExpress.XtraBars.Navigation.OfficeNavigationBar", "DevExpress.XtraBars.Navigation.TileNavPane", "DevExpress.XtraBars.TabFormControl", "DevExpress.XtraBars.FluentDesignSystem.FluentDesignFormControl", "DevExpress.XtraBars.ToolbarForm.ToolbarFormControl"})
|
||||||
'
|
'
|
||||||
'DockPanelFileList
|
'DockPanelFileList
|
||||||
@@ -712,7 +712,7 @@ Partial Class frmDocumentResultList
|
|||||||
resources.ApplyResources(Me.DockPanelFileList, "DockPanelFileList")
|
resources.ApplyResources(Me.DockPanelFileList, "DockPanelFileList")
|
||||||
Me.DockPanelFileList.Name = "DockPanelFileList"
|
Me.DockPanelFileList.Name = "DockPanelFileList"
|
||||||
Me.DockPanelFileList.Options.ShowCloseButton = False
|
Me.DockPanelFileList.Options.ShowCloseButton = False
|
||||||
Me.DockPanelFileList.OriginalSize = New System.Drawing.Size(585, 200)
|
Me.DockPanelFileList.OriginalSize = New System.Drawing.Size(590, 200)
|
||||||
'
|
'
|
||||||
'DockPanel2_Container
|
'DockPanel2_Container
|
||||||
'
|
'
|
||||||
@@ -840,15 +840,15 @@ Partial Class frmDocumentResultList
|
|||||||
resources.ApplyResources(Me.CtrlObjectPropertyDialog, "CtrlObjectPropertyDialog")
|
resources.ApplyResources(Me.CtrlObjectPropertyDialog, "CtrlObjectPropertyDialog")
|
||||||
Me.CtrlObjectPropertyDialog.Name = "CtrlObjectPropertyDialog"
|
Me.CtrlObjectPropertyDialog.Name = "CtrlObjectPropertyDialog"
|
||||||
'
|
'
|
||||||
'DockPanelDocViewer
|
'DockPanelPreview
|
||||||
'
|
'
|
||||||
Me.DockPanelDocViewer.Controls.Add(Me.DockPanel1_Container)
|
Me.DockPanelPreview.Controls.Add(Me.DockPanel1_Container)
|
||||||
Me.DockPanelDocViewer.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill
|
Me.DockPanelPreview.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill
|
||||||
Me.DockPanelDocViewer.ID = New System.Guid("6e5335e5-ba54-49c1-81b3-f174ea4e59ca")
|
Me.DockPanelPreview.ID = New System.Guid("6e5335e5-ba54-49c1-81b3-f174ea4e59ca")
|
||||||
resources.ApplyResources(Me.DockPanelDocViewer, "DockPanelDocViewer")
|
resources.ApplyResources(Me.DockPanelPreview, "DockPanelPreview")
|
||||||
Me.DockPanelDocViewer.Name = "DockPanelDocViewer"
|
Me.DockPanelPreview.Name = "DockPanelPreview"
|
||||||
Me.DockPanelDocViewer.Options.ShowCloseButton = False
|
Me.DockPanelPreview.Options.ShowCloseButton = False
|
||||||
Me.DockPanelDocViewer.OriginalSize = New System.Drawing.Size(329, 200)
|
Me.DockPanelPreview.OriginalSize = New System.Drawing.Size(324, 200)
|
||||||
'
|
'
|
||||||
'DockPanel1_Container
|
'DockPanel1_Container
|
||||||
'
|
'
|
||||||
@@ -865,7 +865,7 @@ Partial Class frmDocumentResultList
|
|||||||
Me.AllowFormGlass = DevExpress.Utils.DefaultBoolean.[True]
|
Me.AllowFormGlass = DevExpress.Utils.DefaultBoolean.[True]
|
||||||
resources.ApplyResources(Me, "$this")
|
resources.ApplyResources(Me, "$this")
|
||||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
Me.Controls.Add(Me.DockPanelDocViewer)
|
Me.Controls.Add(Me.DockPanelPreview)
|
||||||
Me.Controls.Add(Me.panelContainerStatus)
|
Me.Controls.Add(Me.panelContainerStatus)
|
||||||
Me.Controls.Add(Me.DockPanelFileList)
|
Me.Controls.Add(Me.DockPanelFileList)
|
||||||
Me.Controls.Add(Me.RibbonStatusBar)
|
Me.Controls.Add(Me.RibbonStatusBar)
|
||||||
@@ -916,7 +916,7 @@ Partial Class frmDocumentResultList
|
|||||||
CType(Me.EmptySpaceItem1, System.ComponentModel.ISupportInitialize).EndInit()
|
CType(Me.EmptySpaceItem1, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
Me.DockPanelMetadata.ResumeLayout(False)
|
Me.DockPanelMetadata.ResumeLayout(False)
|
||||||
Me.DockPanel3_Container.ResumeLayout(False)
|
Me.DockPanel3_Container.ResumeLayout(False)
|
||||||
Me.DockPanelDocViewer.ResumeLayout(False)
|
Me.DockPanelPreview.ResumeLayout(False)
|
||||||
Me.DockPanel1_Container.ResumeLayout(False)
|
Me.DockPanel1_Container.ResumeLayout(False)
|
||||||
CType(Me.SvgImageCollection1, System.ComponentModel.ISupportInitialize).EndInit()
|
CType(Me.SvgImageCollection1, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
Me.ResumeLayout(False)
|
Me.ResumeLayout(False)
|
||||||
@@ -974,7 +974,7 @@ Partial Class frmDocumentResultList
|
|||||||
Friend WithEvents RibbonPageGroup5 As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
Friend WithEvents RibbonPageGroup5 As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
||||||
Friend WithEvents RibbonPageGroup6 As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
Friend WithEvents RibbonPageGroup6 As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
||||||
Friend WithEvents DockManager1 As DevExpress.XtraBars.Docking.DockManager
|
Friend WithEvents DockManager1 As DevExpress.XtraBars.Docking.DockManager
|
||||||
Friend WithEvents DockPanelDocViewer As DevExpress.XtraBars.Docking.DockPanel
|
Friend WithEvents DockPanelPreview As DevExpress.XtraBars.Docking.DockPanel
|
||||||
Friend WithEvents DockPanel1_Container As DevExpress.XtraBars.Docking.ControlContainer
|
Friend WithEvents DockPanel1_Container As DevExpress.XtraBars.Docking.ControlContainer
|
||||||
Friend WithEvents DockPanelMetadata As DevExpress.XtraBars.Docking.DockPanel
|
Friend WithEvents DockPanelMetadata As DevExpress.XtraBars.Docking.DockPanel
|
||||||
Friend WithEvents DockPanel3_Container As DevExpress.XtraBars.Docking.ControlContainer
|
Friend WithEvents DockPanel3_Container As DevExpress.XtraBars.Docking.ControlContainer
|
||||||
|
|||||||
@@ -493,7 +493,7 @@
|
|||||||
<value>0, 0</value>
|
<value>0, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DocumentViewer1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="DocumentViewer1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>323, 459</value>
|
<value>318, 459</value>
|
||||||
</data>
|
</data>
|
||||||
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
<data name="DocumentViewer1.TabIndex" type="System.Int32, mscorlib">
|
<data name="DocumentViewer1.TabIndex" type="System.Int32, mscorlib">
|
||||||
@@ -515,7 +515,7 @@
|
|||||||
<value>3, 26</value>
|
<value>3, 26</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DockPanel1_Container.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="DockPanel1_Container.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>323, 459</value>
|
<value>318, 459</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DockPanel1_Container.TabIndex" type="System.Int32, mscorlib">
|
<data name="DockPanel1_Container.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@@ -527,30 +527,30 @@
|
|||||||
<value>DevExpress.XtraBars.Docking.ControlContainer, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>DevExpress.XtraBars.Docking.ControlContainer, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>DockPanel1_Container.Parent" xml:space="preserve">
|
<data name=">>DockPanel1_Container.Parent" xml:space="preserve">
|
||||||
<value>DockPanelDocViewer</value>
|
<value>DockPanelPreview</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>DockPanel1_Container.ZOrder" xml:space="preserve">
|
<data name=">>DockPanel1_Container.ZOrder" xml:space="preserve">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DockPanelDocViewer.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="DockPanelPreview.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>585, 158</value>
|
<value>590, 158</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DockPanelDocViewer.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="DockPanelPreview.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>329, 489</value>
|
<value>324, 489</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DockPanelDocViewer.Text" xml:space="preserve">
|
<data name="DockPanelPreview.Text" xml:space="preserve">
|
||||||
<value>Vorschau</value>
|
<value>Vorschau</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>DockPanelDocViewer.Name" xml:space="preserve">
|
<data name=">>DockPanelPreview.Name" xml:space="preserve">
|
||||||
<value>DockPanelDocViewer</value>
|
<value>DockPanelPreview</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>DockPanelDocViewer.Type" xml:space="preserve">
|
<data name=">>DockPanelPreview.Type" xml:space="preserve">
|
||||||
<value>DevExpress.XtraBars.Docking.DockPanel, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>DevExpress.XtraBars.Docking.DockPanel, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>DockPanelDocViewer.Parent" xml:space="preserve">
|
<data name=">>DockPanelPreview.Parent" xml:space="preserve">
|
||||||
<value>$this</value>
|
<value>$this</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>DockPanelDocViewer.ZOrder" xml:space="preserve">
|
<data name=">>DockPanelPreview.ZOrder" xml:space="preserve">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="txtCheckedOutWho.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="txtCheckedOutWho.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
@@ -774,7 +774,7 @@
|
|||||||
<value>3, 26</value>
|
<value>3, 26</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DockPanel2_Container.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="DockPanel2_Container.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>578, 460</value>
|
<value>583, 460</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DockPanel2_Container.TabIndex" type="System.Int32, mscorlib">
|
<data name="DockPanel2_Container.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@@ -795,7 +795,7 @@
|
|||||||
<value>0, 158</value>
|
<value>0, 158</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DockPanelFileList.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="DockPanelFileList.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>585, 489</value>
|
<value>590, 489</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DockPanelFileList.Text" xml:space="preserve">
|
<data name="DockPanelFileList.Text" xml:space="preserve">
|
||||||
<value>Ergebnisse</value>
|
<value>Ergebnisse</value>
|
||||||
@@ -1397,7 +1397,7 @@
|
|||||||
<value>4</value>
|
<value>4</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GridControl1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="GridControl1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>568, 460</value>
|
<value>573, 460</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GridControl1.TabIndex" type="System.Int32, mscorlib">
|
<data name="GridControl1.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@@ -1568,7 +1568,7 @@
|
|||||||
<value>1</value>
|
<value>1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SplitContainerControl1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="SplitContainerControl1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>578, 460</value>
|
<value>583, 460</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SplitContainerControl1.TabIndex" type="System.Int32, mscorlib">
|
<data name="SplitContainerControl1.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>2</value>
|
<value>2</value>
|
||||||
|
|||||||
@@ -117,7 +117,7 @@ Public Class frmDocumentResultList
|
|||||||
Private Function GetOperationMode() As OperationMode
|
Private Function GetOperationMode() As OperationMode
|
||||||
Dim oOperationMode As OperationMode
|
Dim oOperationMode As OperationMode
|
||||||
|
|
||||||
If Environment.Service.IsActive AndAlso Environment.Service.Address <> String.Empty Then
|
If Environment.Service.Client.IsOnline AndAlso Environment.Service.Address <> String.Empty Then
|
||||||
oOperationMode = OperationMode.WithAppServer
|
oOperationMode = OperationMode.WithAppServer
|
||||||
Else
|
Else
|
||||||
oOperationMode = OperationMode.NoAppServer
|
oOperationMode = OperationMode.NoAppServer
|
||||||
@@ -205,6 +205,8 @@ Public Class frmDocumentResultList
|
|||||||
panelContainerStatus.Visibility = Docking.DockVisibility.Hidden
|
panelContainerStatus.Visibility = Docking.DockVisibility.Hidden
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
' Hide the complete Navigation Ribbon Group if desired
|
' Hide the complete Navigation Ribbon Group if desired
|
||||||
RibbonPageGroup_Navigation.Visible = Params.ShowBackNavigation
|
RibbonPageGroup_Navigation.Visible = Params.ShowBackNavigation
|
||||||
|
|
||||||
@@ -217,6 +219,15 @@ Public Class frmDocumentResultList
|
|||||||
chkGridShowGrouping.Checked = LayoutManager.GetGroupPanelVisible()
|
chkGridShowGrouping.Checked = LayoutManager.GetGroupPanelVisible()
|
||||||
chkGridShowTitle.Checked = LayoutManager.GetBandTitleVisible()
|
chkGridShowTitle.Checked = LayoutManager.GetBandTitleVisible()
|
||||||
|
|
||||||
|
' This needs to done be after loading the grid
|
||||||
|
' so we can set the row handle and start loading the (only) file
|
||||||
|
If Params.ShowFileList = False Then
|
||||||
|
DockPanelFileList.HideImmediately()
|
||||||
|
GridView1.FocusedRowHandle = 0
|
||||||
|
Else
|
||||||
|
DockPanelFileList.Show()
|
||||||
|
End If
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
ErrorHandler.ShowErrorMessage(ex, "Form Load", "Error while loading results")
|
ErrorHandler.ShowErrorMessage(ex, "Form Load", "Error while loading results")
|
||||||
|
|
||||||
@@ -449,9 +460,9 @@ Public Class frmDocumentResultList
|
|||||||
#End Region
|
#End Region
|
||||||
|
|
||||||
Private Function InitAppServer() As Boolean
|
Private Function InitAppServer() As Boolean
|
||||||
Dim oSplit As List(Of String) = Environment.Service.Address.Split(":").ToList()
|
Dim oServerAddress = Client.ParseServiceAddress(Environment.Service.Client.ServerAddress)
|
||||||
Dim oAddress As String = oSplit.Item(0)
|
Dim oAddress As String = oServerAddress.Item1
|
||||||
Dim oPort As Integer = oSplit.Item(1)
|
Dim oPort As Integer = oServerAddress.Item2
|
||||||
|
|
||||||
Client = New Client(LogConfig, oAddress, oPort)
|
Client = New Client(LogConfig, oAddress, oPort)
|
||||||
ControlManager = New AttributeControls(LogConfig, Environment, Client)
|
ControlManager = New AttributeControls(LogConfig, Environment, Client)
|
||||||
@@ -1113,4 +1124,8 @@ Public Class frmDocumentResultList
|
|||||||
|
|
||||||
GridBuilder.WithFontSizeDelta(Config.Config.GridFontSizeDelta)
|
GridBuilder.WithFontSizeDelta(Config.Config.GridFontSizeDelta)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub RibbonControl_Click(sender As Object, e As EventArgs) Handles RibbonControl.Click
|
||||||
|
|
||||||
|
End Sub
|
||||||
End Class
|
End Class
|
||||||
@@ -13,7 +13,7 @@ Public Class Form1
|
|||||||
Try
|
Try
|
||||||
_LogConfig = New LogConfig(LogConfig.PathType.Temp, Nothing, "EDMIBenchmark")
|
_LogConfig = New LogConfig(LogConfig.PathType.Temp, Nothing, "EDMIBenchmark")
|
||||||
_Logger = _LogConfig.GetLogger()
|
_Logger = _LogConfig.GetLogger()
|
||||||
_Client = New Client(_LogConfig, "172.24.12.39", 9000)
|
_Client = New Client(_LogConfig, "172.24.12.39:9000")
|
||||||
_Client.Connect()
|
_Client.Connect()
|
||||||
|
|
||||||
DocumentViewer1.Init(_LogConfig, "21182889975216572111813147150675976632")
|
DocumentViewer1.Init(_LogConfig, "21182889975216572111813147150675976632")
|
||||||
|
|||||||
@@ -600,7 +600,7 @@ Partial Class frmAdmin_Globix
|
|||||||
'GridLookUpEdit1
|
'GridLookUpEdit1
|
||||||
'
|
'
|
||||||
Me.GridLookUpEdit1.DataBindings.Add(New System.Windows.Forms.Binding("EditValue", Me.TBDD_DOKUMENTARTBindingSource, "IDB_DOCTYPE_ID", True))
|
Me.GridLookUpEdit1.DataBindings.Add(New System.Windows.Forms.Binding("EditValue", Me.TBDD_DOKUMENTARTBindingSource, "IDB_DOCTYPE_ID", True))
|
||||||
Me.GridLookUpEdit1.Location = New System.Drawing.Point(166, 76)
|
Me.GridLookUpEdit1.Location = New System.Drawing.Point(156, 76)
|
||||||
Me.GridLookUpEdit1.MenuManager = Me.RibbonControl1
|
Me.GridLookUpEdit1.MenuManager = Me.RibbonControl1
|
||||||
Me.GridLookUpEdit1.Name = "GridLookUpEdit1"
|
Me.GridLookUpEdit1.Name = "GridLookUpEdit1"
|
||||||
Me.GridLookUpEdit1.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)})
|
Me.GridLookUpEdit1.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)})
|
||||||
@@ -608,7 +608,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.GridLookUpEdit1.Properties.DisplayMember = "Doctype"
|
Me.GridLookUpEdit1.Properties.DisplayMember = "Doctype"
|
||||||
Me.GridLookUpEdit1.Properties.PopupView = Me.GridLookUpEdit1View
|
Me.GridLookUpEdit1.Properties.PopupView = Me.GridLookUpEdit1View
|
||||||
Me.GridLookUpEdit1.Properties.ValueMember = "Doctype_ID"
|
Me.GridLookUpEdit1.Properties.ValueMember = "Doctype_ID"
|
||||||
Me.GridLookUpEdit1.Size = New System.Drawing.Size(921, 20)
|
Me.GridLookUpEdit1.Size = New System.Drawing.Size(931, 20)
|
||||||
Me.GridLookUpEdit1.StyleController = Me.LayoutControlProfile
|
Me.GridLookUpEdit1.StyleController = Me.LayoutControlProfile
|
||||||
Me.GridLookUpEdit1.TabIndex = 61
|
Me.GridLookUpEdit1.TabIndex = 61
|
||||||
'
|
'
|
||||||
@@ -630,19 +630,19 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.IDB_DOCTYPE_IDComboBox.DataSource = Me.VWIDB_DOCTYPE_LANGUAGEBindingSource
|
Me.IDB_DOCTYPE_IDComboBox.DataSource = Me.VWIDB_DOCTYPE_LANGUAGEBindingSource
|
||||||
Me.IDB_DOCTYPE_IDComboBox.DisplayMember = "Doctype"
|
Me.IDB_DOCTYPE_IDComboBox.DisplayMember = "Doctype"
|
||||||
Me.IDB_DOCTYPE_IDComboBox.FormattingEnabled = True
|
Me.IDB_DOCTYPE_IDComboBox.FormattingEnabled = True
|
||||||
Me.IDB_DOCTYPE_IDComboBox.Location = New System.Drawing.Point(166, 45)
|
Me.IDB_DOCTYPE_IDComboBox.Location = New System.Drawing.Point(156, 45)
|
||||||
Me.IDB_DOCTYPE_IDComboBox.Name = "IDB_DOCTYPE_IDComboBox"
|
Me.IDB_DOCTYPE_IDComboBox.Name = "IDB_DOCTYPE_IDComboBox"
|
||||||
Me.IDB_DOCTYPE_IDComboBox.Size = New System.Drawing.Size(379, 21)
|
Me.IDB_DOCTYPE_IDComboBox.Size = New System.Drawing.Size(389, 21)
|
||||||
Me.IDB_DOCTYPE_IDComboBox.TabIndex = 60
|
Me.IDB_DOCTYPE_IDComboBox.TabIndex = 60
|
||||||
Me.IDB_DOCTYPE_IDComboBox.ValueMember = "Doctype_ID"
|
Me.IDB_DOCTYPE_IDComboBox.ValueMember = "Doctype_ID"
|
||||||
'
|
'
|
||||||
'TextEdit1
|
'TextEdit1
|
||||||
'
|
'
|
||||||
Me.TextEdit1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "ERSTELLTWANN", True))
|
Me.TextEdit1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "ERSTELLTWANN", True))
|
||||||
Me.TextEdit1.Location = New System.Drawing.Point(166, 257)
|
Me.TextEdit1.Location = New System.Drawing.Point(156, 257)
|
||||||
Me.TextEdit1.MenuManager = Me.RibbonControl1
|
Me.TextEdit1.MenuManager = Me.RibbonControl1
|
||||||
Me.TextEdit1.Name = "TextEdit1"
|
Me.TextEdit1.Name = "TextEdit1"
|
||||||
Me.TextEdit1.Size = New System.Drawing.Size(379, 20)
|
Me.TextEdit1.Size = New System.Drawing.Size(389, 20)
|
||||||
Me.TextEdit1.StyleController = Me.LayoutControlProfile
|
Me.TextEdit1.StyleController = Me.LayoutControlProfile
|
||||||
Me.TextEdit1.TabIndex = 59
|
Me.TextEdit1.TabIndex = 59
|
||||||
'
|
'
|
||||||
@@ -653,9 +653,9 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.IDB_OBJECT_STORE_IDComboBox.DataSource = Me.VWIDB_OBJECT_STOREBindingSource
|
Me.IDB_OBJECT_STORE_IDComboBox.DataSource = Me.VWIDB_OBJECT_STOREBindingSource
|
||||||
Me.IDB_OBJECT_STORE_IDComboBox.DisplayMember = "Objectstore"
|
Me.IDB_OBJECT_STORE_IDComboBox.DisplayMember = "Objectstore"
|
||||||
Me.IDB_OBJECT_STORE_IDComboBox.FormattingEnabled = True
|
Me.IDB_OBJECT_STORE_IDComboBox.FormattingEnabled = True
|
||||||
Me.IDB_OBJECT_STORE_IDComboBox.Location = New System.Drawing.Point(166, 166)
|
Me.IDB_OBJECT_STORE_IDComboBox.Location = New System.Drawing.Point(156, 166)
|
||||||
Me.IDB_OBJECT_STORE_IDComboBox.Name = "IDB_OBJECT_STORE_IDComboBox"
|
Me.IDB_OBJECT_STORE_IDComboBox.Name = "IDB_OBJECT_STORE_IDComboBox"
|
||||||
Me.IDB_OBJECT_STORE_IDComboBox.Size = New System.Drawing.Size(379, 21)
|
Me.IDB_OBJECT_STORE_IDComboBox.Size = New System.Drawing.Size(389, 21)
|
||||||
Me.IDB_OBJECT_STORE_IDComboBox.TabIndex = 57
|
Me.IDB_OBJECT_STORE_IDComboBox.TabIndex = 57
|
||||||
Me.IDB_OBJECT_STORE_IDComboBox.ValueMember = "GUID"
|
Me.IDB_OBJECT_STORE_IDComboBox.ValueMember = "GUID"
|
||||||
'
|
'
|
||||||
@@ -667,10 +667,10 @@ Partial Class frmAdmin_Globix
|
|||||||
'SEQUENCENumericUpDown
|
'SEQUENCENumericUpDown
|
||||||
'
|
'
|
||||||
Me.SEQUENCENumericUpDown.DataBindings.Add(New System.Windows.Forms.Binding("Value", Me.TBDD_INDEX_MANBindingSource, "SEQUENCE", True))
|
Me.SEQUENCENumericUpDown.DataBindings.Add(New System.Windows.Forms.Binding("Value", Me.TBDD_INDEX_MANBindingSource, "SEQUENCE", True))
|
||||||
Me.SEQUENCENumericUpDown.Location = New System.Drawing.Point(395, 15)
|
Me.SEQUENCENumericUpDown.Location = New System.Drawing.Point(385, 15)
|
||||||
Me.SEQUENCENumericUpDown.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
|
Me.SEQUENCENumericUpDown.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
|
||||||
Me.SEQUENCENumericUpDown.Name = "SEQUENCENumericUpDown"
|
Me.SEQUENCENumericUpDown.Name = "SEQUENCENumericUpDown"
|
||||||
Me.SEQUENCENumericUpDown.Size = New System.Drawing.Size(34, 22)
|
Me.SEQUENCENumericUpDown.Size = New System.Drawing.Size(44, 21)
|
||||||
Me.SEQUENCENumericUpDown.TabIndex = 56
|
Me.SEQUENCENumericUpDown.TabIndex = 56
|
||||||
Me.SEQUENCENumericUpDown.Value = New Decimal(New Integer() {1, 0, 0, 0})
|
Me.SEQUENCENumericUpDown.Value = New Decimal(New Integer() {1, 0, 0, 0})
|
||||||
'
|
'
|
||||||
@@ -692,81 +692,81 @@ Partial Class frmAdmin_Globix
|
|||||||
'GEAENDERTWANNTextBox
|
'GEAENDERTWANNTextBox
|
||||||
'
|
'
|
||||||
Me.GEAENDERTWANNTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "GEAENDERTWANN", True))
|
Me.GEAENDERTWANNTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "GEAENDERTWANN", True))
|
||||||
Me.GEAENDERTWANNTextBox.Location = New System.Drawing.Point(706, 257)
|
Me.GEAENDERTWANNTextBox.Location = New System.Drawing.Point(696, 257)
|
||||||
Me.GEAENDERTWANNTextBox.Name = "GEAENDERTWANNTextBox"
|
Me.GEAENDERTWANNTextBox.Name = "GEAENDERTWANNTextBox"
|
||||||
Me.GEAENDERTWANNTextBox.ReadOnly = True
|
Me.GEAENDERTWANNTextBox.ReadOnly = True
|
||||||
Me.GEAENDERTWANNTextBox.Size = New System.Drawing.Size(381, 20)
|
Me.GEAENDERTWANNTextBox.Size = New System.Drawing.Size(391, 20)
|
||||||
Me.GEAENDERTWANNTextBox.TabIndex = 39
|
Me.GEAENDERTWANNTextBox.TabIndex = 39
|
||||||
'
|
'
|
||||||
'TextEditErstelltWer
|
'TextEditErstelltWer
|
||||||
'
|
'
|
||||||
Me.TextEditErstelltWer.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "ERSTELLTWER", True))
|
Me.TextEditErstelltWer.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "ERSTELLTWER", True))
|
||||||
Me.TextEditErstelltWer.Location = New System.Drawing.Point(166, 227)
|
Me.TextEditErstelltWer.Location = New System.Drawing.Point(156, 227)
|
||||||
Me.TextEditErstelltWer.MenuManager = Me.RibbonControl1
|
Me.TextEditErstelltWer.MenuManager = Me.RibbonControl1
|
||||||
Me.TextEditErstelltWer.Name = "TextEditErstelltWer"
|
Me.TextEditErstelltWer.Name = "TextEditErstelltWer"
|
||||||
Me.TextEditErstelltWer.Size = New System.Drawing.Size(379, 20)
|
Me.TextEditErstelltWer.Size = New System.Drawing.Size(389, 20)
|
||||||
Me.TextEditErstelltWer.StyleController = Me.LayoutControlProfile
|
Me.TextEditErstelltWer.StyleController = Me.LayoutControlProfile
|
||||||
Me.TextEditErstelltWer.TabIndex = 44
|
Me.TextEditErstelltWer.TabIndex = 44
|
||||||
'
|
'
|
||||||
'TextEditGeandertWer
|
'TextEditGeandertWer
|
||||||
'
|
'
|
||||||
Me.TextEditGeandertWer.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "GEANDERTWER", True))
|
Me.TextEditGeandertWer.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "GEANDERTWER", True))
|
||||||
Me.TextEditGeandertWer.Location = New System.Drawing.Point(706, 227)
|
Me.TextEditGeandertWer.Location = New System.Drawing.Point(696, 227)
|
||||||
Me.TextEditGeandertWer.MenuManager = Me.RibbonControl1
|
Me.TextEditGeandertWer.MenuManager = Me.RibbonControl1
|
||||||
Me.TextEditGeandertWer.Name = "TextEditGeandertWer"
|
Me.TextEditGeandertWer.Name = "TextEditGeandertWer"
|
||||||
Me.TextEditGeandertWer.Size = New System.Drawing.Size(381, 20)
|
Me.TextEditGeandertWer.Size = New System.Drawing.Size(391, 20)
|
||||||
Me.TextEditGeandertWer.StyleController = Me.LayoutControlProfile
|
Me.TextEditGeandertWer.StyleController = Me.LayoutControlProfile
|
||||||
Me.TextEditGeandertWer.TabIndex = 45
|
Me.TextEditGeandertWer.TabIndex = 45
|
||||||
'
|
'
|
||||||
'TextEditNamenkonvention
|
'TextEditNamenkonvention
|
||||||
'
|
'
|
||||||
Me.TextEditNamenkonvention.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "NAMENKONVENTION", True))
|
Me.TextEditNamenkonvention.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "NAMENKONVENTION", True))
|
||||||
Me.TextEditNamenkonvention.Location = New System.Drawing.Point(166, 136)
|
Me.TextEditNamenkonvention.Location = New System.Drawing.Point(156, 136)
|
||||||
Me.TextEditNamenkonvention.MenuManager = Me.RibbonControl1
|
Me.TextEditNamenkonvention.MenuManager = Me.RibbonControl1
|
||||||
Me.TextEditNamenkonvention.Name = "TextEditNamenkonvention"
|
Me.TextEditNamenkonvention.Name = "TextEditNamenkonvention"
|
||||||
Me.TextEditNamenkonvention.Size = New System.Drawing.Size(662, 20)
|
Me.TextEditNamenkonvention.Size = New System.Drawing.Size(672, 20)
|
||||||
Me.TextEditNamenkonvention.StyleController = Me.LayoutControlProfile
|
Me.TextEditNamenkonvention.StyleController = Me.LayoutControlProfile
|
||||||
Me.TextEditNamenkonvention.TabIndex = 46
|
Me.TextEditNamenkonvention.TabIndex = 46
|
||||||
'
|
'
|
||||||
'TextEditBeschreibung
|
'TextEditBeschreibung
|
||||||
'
|
'
|
||||||
Me.TextEditBeschreibung.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "BESCHREIBUNG", True))
|
Me.TextEditBeschreibung.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "BESCHREIBUNG", True))
|
||||||
Me.TextEditBeschreibung.Location = New System.Drawing.Point(166, 197)
|
Me.TextEditBeschreibung.Location = New System.Drawing.Point(156, 197)
|
||||||
Me.TextEditBeschreibung.MenuManager = Me.RibbonControl1
|
Me.TextEditBeschreibung.MenuManager = Me.RibbonControl1
|
||||||
Me.TextEditBeschreibung.Name = "TextEditBeschreibung"
|
Me.TextEditBeschreibung.Name = "TextEditBeschreibung"
|
||||||
Me.TextEditBeschreibung.Size = New System.Drawing.Size(921, 20)
|
Me.TextEditBeschreibung.Size = New System.Drawing.Size(931, 20)
|
||||||
Me.TextEditBeschreibung.StyleController = Me.LayoutControlProfile
|
Me.TextEditBeschreibung.StyleController = Me.LayoutControlProfile
|
||||||
Me.TextEditBeschreibung.TabIndex = 48
|
Me.TextEditBeschreibung.TabIndex = 48
|
||||||
'
|
'
|
||||||
'TextEditBezeichnung
|
'TextEditBezeichnung
|
||||||
'
|
'
|
||||||
Me.TextEditBezeichnung.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "BEZEICHNUNG", True))
|
Me.TextEditBezeichnung.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "BEZEICHNUNG", True))
|
||||||
Me.TextEditBezeichnung.Location = New System.Drawing.Point(706, 45)
|
Me.TextEditBezeichnung.Location = New System.Drawing.Point(696, 45)
|
||||||
Me.TextEditBezeichnung.MenuManager = Me.RibbonControl1
|
Me.TextEditBezeichnung.MenuManager = Me.RibbonControl1
|
||||||
Me.TextEditBezeichnung.Name = "TextEditBezeichnung"
|
Me.TextEditBezeichnung.Name = "TextEditBezeichnung"
|
||||||
Me.TextEditBezeichnung.Size = New System.Drawing.Size(381, 20)
|
Me.TextEditBezeichnung.Size = New System.Drawing.Size(391, 20)
|
||||||
Me.TextEditBezeichnung.StyleController = Me.LayoutControlProfile
|
Me.TextEditBezeichnung.StyleController = Me.LayoutControlProfile
|
||||||
Me.TextEditBezeichnung.TabIndex = 51
|
Me.TextEditBezeichnung.TabIndex = 51
|
||||||
'
|
'
|
||||||
'TextEditDoctypeID
|
'TextEditDoctypeID
|
||||||
'
|
'
|
||||||
Me.TextEditDoctypeID.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "GUID", True))
|
Me.TextEditDoctypeID.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "GUID", True))
|
||||||
Me.TextEditDoctypeID.Location = New System.Drawing.Point(166, 15)
|
Me.TextEditDoctypeID.Location = New System.Drawing.Point(156, 15)
|
||||||
Me.TextEditDoctypeID.MenuManager = Me.RibbonControl1
|
Me.TextEditDoctypeID.MenuManager = Me.RibbonControl1
|
||||||
Me.TextEditDoctypeID.Name = "TextEditDoctypeID"
|
Me.TextEditDoctypeID.Name = "TextEditDoctypeID"
|
||||||
Me.TextEditDoctypeID.Size = New System.Drawing.Size(68, 20)
|
Me.TextEditDoctypeID.Size = New System.Drawing.Size(78, 20)
|
||||||
Me.TextEditDoctypeID.StyleController = Me.LayoutControlProfile
|
Me.TextEditDoctypeID.StyleController = Me.LayoutControlProfile
|
||||||
Me.TextEditDoctypeID.TabIndex = 52
|
Me.TextEditDoctypeID.TabIndex = 52
|
||||||
'
|
'
|
||||||
'ComboBoxEditDupl_handling
|
'ComboBoxEditDupl_handling
|
||||||
'
|
'
|
||||||
Me.ComboBoxEditDupl_handling.DataBindings.Add(New System.Windows.Forms.Binding("EditValue", Me.TBDD_DOKUMENTARTBindingSource, "DUPLICATE_HANDLING", True))
|
Me.ComboBoxEditDupl_handling.DataBindings.Add(New System.Windows.Forms.Binding("EditValue", Me.TBDD_DOKUMENTARTBindingSource, "DUPLICATE_HANDLING", True))
|
||||||
Me.ComboBoxEditDupl_handling.Location = New System.Drawing.Point(166, 106)
|
Me.ComboBoxEditDupl_handling.Location = New System.Drawing.Point(156, 106)
|
||||||
Me.ComboBoxEditDupl_handling.MenuManager = Me.RibbonControl1
|
Me.ComboBoxEditDupl_handling.MenuManager = Me.RibbonControl1
|
||||||
Me.ComboBoxEditDupl_handling.Name = "ComboBoxEditDupl_handling"
|
Me.ComboBoxEditDupl_handling.Name = "ComboBoxEditDupl_handling"
|
||||||
Me.ComboBoxEditDupl_handling.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)})
|
Me.ComboBoxEditDupl_handling.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)})
|
||||||
Me.ComboBoxEditDupl_handling.Properties.Items.AddRange(New Object() {"New version", "Default", "Question"})
|
Me.ComboBoxEditDupl_handling.Properties.Items.AddRange(New Object() {"New version", "Default", "Question"})
|
||||||
Me.ComboBoxEditDupl_handling.Size = New System.Drawing.Size(921, 20)
|
Me.ComboBoxEditDupl_handling.Size = New System.Drawing.Size(931, 20)
|
||||||
Me.ComboBoxEditDupl_handling.StyleController = Me.LayoutControlProfile
|
Me.ComboBoxEditDupl_handling.StyleController = Me.LayoutControlProfile
|
||||||
Me.ComboBoxEditDupl_handling.TabIndex = 54
|
Me.ComboBoxEditDupl_handling.TabIndex = 54
|
||||||
'
|
'
|
||||||
@@ -798,7 +798,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem10.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem10.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem10.Size = New System.Drawing.Size(542, 31)
|
Me.LayoutControlItem10.Size = New System.Drawing.Size(542, 31)
|
||||||
Me.LayoutControlItem10.Text = "Bezeichnung"
|
Me.LayoutControlItem10.Text = "Bezeichnung"
|
||||||
Me.LayoutControlItem10.TextSize = New System.Drawing.Size(139, 13)
|
Me.LayoutControlItem10.TextSize = New System.Drawing.Size(129, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem3
|
'LayoutControlItem3
|
||||||
'
|
'
|
||||||
@@ -811,7 +811,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem3.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem3.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem3.Size = New System.Drawing.Size(540, 30)
|
Me.LayoutControlItem3.Size = New System.Drawing.Size(540, 30)
|
||||||
Me.LayoutControlItem3.Text = "Erstellt wer"
|
Me.LayoutControlItem3.Text = "Erstellt wer"
|
||||||
Me.LayoutControlItem3.TextSize = New System.Drawing.Size(139, 13)
|
Me.LayoutControlItem3.TextSize = New System.Drawing.Size(129, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem30
|
'LayoutControlItem30
|
||||||
'
|
'
|
||||||
@@ -821,7 +821,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem30.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem30.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem30.Size = New System.Drawing.Size(823, 30)
|
Me.LayoutControlItem30.Size = New System.Drawing.Size(823, 30)
|
||||||
Me.LayoutControlItem30.Text = "Namenkonvention"
|
Me.LayoutControlItem30.Text = "Namenkonvention"
|
||||||
Me.LayoutControlItem30.TextSize = New System.Drawing.Size(139, 13)
|
Me.LayoutControlItem30.TextSize = New System.Drawing.Size(129, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem20
|
'LayoutControlItem20
|
||||||
'
|
'
|
||||||
@@ -832,7 +832,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem20.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem20.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem20.Size = New System.Drawing.Size(195, 30)
|
Me.LayoutControlItem20.Size = New System.Drawing.Size(195, 30)
|
||||||
Me.LayoutControlItem20.Text = "Reihenfolge"
|
Me.LayoutControlItem20.Text = "Reihenfolge"
|
||||||
Me.LayoutControlItem20.TextSize = New System.Drawing.Size(139, 13)
|
Me.LayoutControlItem20.TextSize = New System.Drawing.Size(129, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem4
|
'LayoutControlItem4
|
||||||
'
|
'
|
||||||
@@ -844,7 +844,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem4.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem4.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem4.Size = New System.Drawing.Size(229, 30)
|
Me.LayoutControlItem4.Size = New System.Drawing.Size(229, 30)
|
||||||
Me.LayoutControlItem4.Text = "ID"
|
Me.LayoutControlItem4.Text = "ID"
|
||||||
Me.LayoutControlItem4.TextSize = New System.Drawing.Size(139, 13)
|
Me.LayoutControlItem4.TextSize = New System.Drawing.Size(129, 13)
|
||||||
'
|
'
|
||||||
'EmptySpaceItem1
|
'EmptySpaceItem1
|
||||||
'
|
'
|
||||||
@@ -873,7 +873,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem25.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem25.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem25.Size = New System.Drawing.Size(540, 31)
|
Me.LayoutControlItem25.Size = New System.Drawing.Size(540, 31)
|
||||||
Me.LayoutControlItem25.Text = "File-Store:"
|
Me.LayoutControlItem25.Text = "File-Store:"
|
||||||
Me.LayoutControlItem25.TextSize = New System.Drawing.Size(139, 13)
|
Me.LayoutControlItem25.TextSize = New System.Drawing.Size(129, 13)
|
||||||
'
|
'
|
||||||
'EmptySpaceItem3
|
'EmptySpaceItem3
|
||||||
'
|
'
|
||||||
@@ -891,7 +891,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem26.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem26.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem26.Size = New System.Drawing.Size(1082, 30)
|
Me.LayoutControlItem26.Size = New System.Drawing.Size(1082, 30)
|
||||||
Me.LayoutControlItem26.Text = "Verhalten Datei vorhanden"
|
Me.LayoutControlItem26.Text = "Verhalten Datei vorhanden"
|
||||||
Me.LayoutControlItem26.TextSize = New System.Drawing.Size(139, 13)
|
Me.LayoutControlItem26.TextSize = New System.Drawing.Size(129, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem1
|
'LayoutControlItem1
|
||||||
'
|
'
|
||||||
@@ -913,7 +913,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem32.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem32.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem32.Size = New System.Drawing.Size(540, 30)
|
Me.LayoutControlItem32.Size = New System.Drawing.Size(540, 30)
|
||||||
Me.LayoutControlItem32.Text = "Erstellt wann"
|
Me.LayoutControlItem32.Text = "Erstellt wann"
|
||||||
Me.LayoutControlItem32.TextSize = New System.Drawing.Size(139, 13)
|
Me.LayoutControlItem32.TextSize = New System.Drawing.Size(129, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem5
|
'LayoutControlItem5
|
||||||
'
|
'
|
||||||
@@ -926,7 +926,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem5.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem5.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem5.Size = New System.Drawing.Size(542, 30)
|
Me.LayoutControlItem5.Size = New System.Drawing.Size(542, 30)
|
||||||
Me.LayoutControlItem5.Text = "Geändert wer"
|
Me.LayoutControlItem5.Text = "Geändert wer"
|
||||||
Me.LayoutControlItem5.TextSize = New System.Drawing.Size(139, 13)
|
Me.LayoutControlItem5.TextSize = New System.Drawing.Size(129, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem36
|
'LayoutControlItem36
|
||||||
'
|
'
|
||||||
@@ -939,7 +939,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem36.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem36.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem36.Size = New System.Drawing.Size(542, 30)
|
Me.LayoutControlItem36.Size = New System.Drawing.Size(542, 30)
|
||||||
Me.LayoutControlItem36.Text = "Geändert wann:"
|
Me.LayoutControlItem36.Text = "Geändert wann:"
|
||||||
Me.LayoutControlItem36.TextSize = New System.Drawing.Size(139, 13)
|
Me.LayoutControlItem36.TextSize = New System.Drawing.Size(129, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem28
|
'LayoutControlItem28
|
||||||
'
|
'
|
||||||
@@ -949,7 +949,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem28.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem28.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem28.Size = New System.Drawing.Size(1082, 30)
|
Me.LayoutControlItem28.Size = New System.Drawing.Size(1082, 30)
|
||||||
Me.LayoutControlItem28.Text = "Beschreibung"
|
Me.LayoutControlItem28.Text = "Beschreibung"
|
||||||
Me.LayoutControlItem28.TextSize = New System.Drawing.Size(139, 13)
|
Me.LayoutControlItem28.TextSize = New System.Drawing.Size(129, 13)
|
||||||
'
|
'
|
||||||
'EmptySpaceItem12
|
'EmptySpaceItem12
|
||||||
'
|
'
|
||||||
@@ -967,7 +967,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem61.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem61.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem61.Size = New System.Drawing.Size(540, 31)
|
Me.LayoutControlItem61.Size = New System.Drawing.Size(540, 31)
|
||||||
Me.LayoutControlItem61.Text = "Dokumentart"
|
Me.LayoutControlItem61.Text = "Dokumentart"
|
||||||
Me.LayoutControlItem61.TextSize = New System.Drawing.Size(139, 13)
|
Me.LayoutControlItem61.TextSize = New System.Drawing.Size(129, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem12
|
'LayoutControlItem12
|
||||||
'
|
'
|
||||||
@@ -976,7 +976,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem12.Name = "LayoutControlItem12"
|
Me.LayoutControlItem12.Name = "LayoutControlItem12"
|
||||||
Me.LayoutControlItem12.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem12.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem12.Size = New System.Drawing.Size(1082, 30)
|
Me.LayoutControlItem12.Size = New System.Drawing.Size(1082, 30)
|
||||||
Me.LayoutControlItem12.TextSize = New System.Drawing.Size(139, 13)
|
Me.LayoutControlItem12.TextSize = New System.Drawing.Size(129, 13)
|
||||||
'
|
'
|
||||||
'XtraTabControl2
|
'XtraTabControl2
|
||||||
'
|
'
|
||||||
@@ -1531,9 +1531,9 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.CONNECTION_IDTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "CONNECTION_ID", True))
|
Me.CONNECTION_IDTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "CONNECTION_ID", True))
|
||||||
Me.CONNECTION_IDTextBox1.Enabled = False
|
Me.CONNECTION_IDTextBox1.Enabled = False
|
||||||
Me.CONNECTION_IDTextBox1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
Me.CONNECTION_IDTextBox1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.CONNECTION_IDTextBox1.Location = New System.Drawing.Point(352, 142)
|
Me.CONNECTION_IDTextBox1.Location = New System.Drawing.Point(350, 142)
|
||||||
Me.CONNECTION_IDTextBox1.Name = "CONNECTION_IDTextBox1"
|
Me.CONNECTION_IDTextBox1.Name = "CONNECTION_IDTextBox1"
|
||||||
Me.CONNECTION_IDTextBox1.Size = New System.Drawing.Size(24, 20)
|
Me.CONNECTION_IDTextBox1.Size = New System.Drawing.Size(26, 20)
|
||||||
Me.CONNECTION_IDTextBox1.TabIndex = 23
|
Me.CONNECTION_IDTextBox1.TabIndex = 23
|
||||||
'
|
'
|
||||||
'SQL_RESULTTextBox1
|
'SQL_RESULTTextBox1
|
||||||
@@ -1559,9 +1559,9 @@ Partial Class frmAdmin_Globix
|
|||||||
'VALUETextBox
|
'VALUETextBox
|
||||||
'
|
'
|
||||||
Me.VALUETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "VALUE", True))
|
Me.VALUETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "VALUE", True))
|
||||||
Me.VALUETextBox.Location = New System.Drawing.Point(369, 76)
|
Me.VALUETextBox.Location = New System.Drawing.Point(361, 76)
|
||||||
Me.VALUETextBox.Name = "VALUETextBox"
|
Me.VALUETextBox.Name = "VALUETextBox"
|
||||||
Me.VALUETextBox.Size = New System.Drawing.Size(177, 20)
|
Me.VALUETextBox.Size = New System.Drawing.Size(185, 20)
|
||||||
Me.VALUETextBox.TabIndex = 9
|
Me.VALUETextBox.TabIndex = 9
|
||||||
'
|
'
|
||||||
'INDEXNAMEComboBox
|
'INDEXNAMEComboBox
|
||||||
@@ -1570,9 +1570,9 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.INDEXNAMEComboBox.DataSource = Me.VWIDB_BE_ATTRIBUTEBindingSource
|
Me.INDEXNAMEComboBox.DataSource = Me.VWIDB_BE_ATTRIBUTEBindingSource
|
||||||
Me.INDEXNAMEComboBox.DisplayMember = "ATTR_TITLE"
|
Me.INDEXNAMEComboBox.DisplayMember = "ATTR_TITLE"
|
||||||
Me.INDEXNAMEComboBox.FormattingEnabled = True
|
Me.INDEXNAMEComboBox.FormattingEnabled = True
|
||||||
Me.INDEXNAMEComboBox.Location = New System.Drawing.Point(369, 45)
|
Me.INDEXNAMEComboBox.Location = New System.Drawing.Point(361, 45)
|
||||||
Me.INDEXNAMEComboBox.Name = "INDEXNAMEComboBox"
|
Me.INDEXNAMEComboBox.Name = "INDEXNAMEComboBox"
|
||||||
Me.INDEXNAMEComboBox.Size = New System.Drawing.Size(376, 21)
|
Me.INDEXNAMEComboBox.Size = New System.Drawing.Size(384, 21)
|
||||||
Me.INDEXNAMEComboBox.TabIndex = 8
|
Me.INDEXNAMEComboBox.TabIndex = 8
|
||||||
'
|
'
|
||||||
'ACTIVECheckBox1
|
'ACTIVECheckBox1
|
||||||
@@ -1588,19 +1588,19 @@ Partial Class frmAdmin_Globix
|
|||||||
'SEQUENCENumericUpDown1
|
'SEQUENCENumericUpDown1
|
||||||
'
|
'
|
||||||
Me.SEQUENCENumericUpDown1.DataBindings.Add(New System.Windows.Forms.Binding("Value", Me.TBDD_INDEX_AUTOMBindingSource, "SEQUENCE", True))
|
Me.SEQUENCENumericUpDown1.DataBindings.Add(New System.Windows.Forms.Binding("Value", Me.TBDD_INDEX_AUTOMBindingSource, "SEQUENCE", True))
|
||||||
Me.SEQUENCENumericUpDown1.Location = New System.Drawing.Point(469, 15)
|
Me.SEQUENCENumericUpDown1.Location = New System.Drawing.Point(463, 15)
|
||||||
Me.SEQUENCENumericUpDown1.Name = "SEQUENCENumericUpDown1"
|
Me.SEQUENCENumericUpDown1.Name = "SEQUENCENumericUpDown1"
|
||||||
Me.SEQUENCENumericUpDown1.Size = New System.Drawing.Size(46, 22)
|
Me.SEQUENCENumericUpDown1.Size = New System.Drawing.Size(52, 21)
|
||||||
Me.SEQUENCENumericUpDown1.TabIndex = 6
|
Me.SEQUENCENumericUpDown1.TabIndex = 6
|
||||||
'
|
'
|
||||||
'GUIDTextBoxAutoAttribute
|
'GUIDTextBoxAutoAttribute
|
||||||
'
|
'
|
||||||
Me.GUIDTextBoxAutoAttribute.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "GUID", True))
|
Me.GUIDTextBoxAutoAttribute.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "GUID", True))
|
||||||
Me.GUIDTextBoxAutoAttribute.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
Me.GUIDTextBoxAutoAttribute.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.GUIDTextBoxAutoAttribute.Location = New System.Drawing.Point(369, 15)
|
Me.GUIDTextBoxAutoAttribute.Location = New System.Drawing.Point(361, 15)
|
||||||
Me.GUIDTextBoxAutoAttribute.Name = "GUIDTextBoxAutoAttribute"
|
Me.GUIDTextBoxAutoAttribute.Name = "GUIDTextBoxAutoAttribute"
|
||||||
Me.GUIDTextBoxAutoAttribute.ReadOnly = True
|
Me.GUIDTextBoxAutoAttribute.ReadOnly = True
|
||||||
Me.GUIDTextBoxAutoAttribute.Size = New System.Drawing.Size(22, 20)
|
Me.GUIDTextBoxAutoAttribute.Size = New System.Drawing.Size(30, 20)
|
||||||
Me.GUIDTextBoxAutoAttribute.TabIndex = 5
|
Me.GUIDTextBoxAutoAttribute.TabIndex = 5
|
||||||
'
|
'
|
||||||
'SimpleButton1
|
'SimpleButton1
|
||||||
@@ -1617,12 +1617,12 @@ Partial Class frmAdmin_Globix
|
|||||||
'
|
'
|
||||||
'ComboBoxEditAAttrFileParam
|
'ComboBoxEditAAttrFileParam
|
||||||
'
|
'
|
||||||
Me.ComboBoxEditAAttrFileParam.Location = New System.Drawing.Point(844, 76)
|
Me.ComboBoxEditAAttrFileParam.Location = New System.Drawing.Point(836, 76)
|
||||||
Me.ComboBoxEditAAttrFileParam.MenuManager = Me.RibbonControl1
|
Me.ComboBoxEditAAttrFileParam.MenuManager = Me.RibbonControl1
|
||||||
Me.ComboBoxEditAAttrFileParam.Name = "ComboBoxEditAAttrFileParam"
|
Me.ComboBoxEditAAttrFileParam.Name = "ComboBoxEditAAttrFileParam"
|
||||||
Me.ComboBoxEditAAttrFileParam.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)})
|
Me.ComboBoxEditAAttrFileParam.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)})
|
||||||
Me.ComboBoxEditAAttrFileParam.Properties.Items.AddRange(New Object() {"FILENAME_EXT", "FILENAME", "EXTENSION", "DATE_CREATED", "DATE_MODIFIED"})
|
Me.ComboBoxEditAAttrFileParam.Properties.Items.AddRange(New Object() {"FILENAME_EXT", "FILENAME", "EXTENSION", "DATE_CREATED", "DATE_MODIFIED"})
|
||||||
Me.ComboBoxEditAAttrFileParam.Size = New System.Drawing.Size(252, 20)
|
Me.ComboBoxEditAAttrFileParam.Size = New System.Drawing.Size(260, 20)
|
||||||
Me.ComboBoxEditAAttrFileParam.StyleController = Me.LayoutControlAutoIndexe
|
Me.ComboBoxEditAAttrFileParam.StyleController = Me.LayoutControlAutoIndexe
|
||||||
Me.ComboBoxEditAAttrFileParam.TabIndex = 11
|
Me.ComboBoxEditAAttrFileParam.TabIndex = 11
|
||||||
'
|
'
|
||||||
@@ -1641,12 +1641,12 @@ Partial Class frmAdmin_Globix
|
|||||||
'
|
'
|
||||||
Me.ADDED_WHOTextBoxAutoAttribut.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "ADDED_WHO", True))
|
Me.ADDED_WHOTextBoxAutoAttribut.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "ADDED_WHO", True))
|
||||||
Me.ADDED_WHOTextBoxAutoAttribut.Enabled = False
|
Me.ADDED_WHOTextBoxAutoAttribut.Enabled = False
|
||||||
Me.ADDED_WHOTextBoxAutoAttribut.Location = New System.Drawing.Point(369, 202)
|
Me.ADDED_WHOTextBoxAutoAttribut.Location = New System.Drawing.Point(361, 202)
|
||||||
Me.ADDED_WHOTextBoxAutoAttribut.MenuManager = Me.RibbonControl1
|
Me.ADDED_WHOTextBoxAutoAttribut.MenuManager = Me.RibbonControl1
|
||||||
Me.ADDED_WHOTextBoxAutoAttribut.Name = "ADDED_WHOTextBoxAutoAttribut"
|
Me.ADDED_WHOTextBoxAutoAttribut.Name = "ADDED_WHOTextBoxAutoAttribut"
|
||||||
Me.ADDED_WHOTextBoxAutoAttribut.Properties.Appearance.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
Me.ADDED_WHOTextBoxAutoAttribut.Properties.Appearance.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.ADDED_WHOTextBoxAutoAttribut.Properties.Appearance.Options.UseFont = True
|
Me.ADDED_WHOTextBoxAutoAttribut.Properties.Appearance.Options.UseFont = True
|
||||||
Me.ADDED_WHOTextBoxAutoAttribut.Size = New System.Drawing.Size(271, 20)
|
Me.ADDED_WHOTextBoxAutoAttribut.Size = New System.Drawing.Size(279, 20)
|
||||||
Me.ADDED_WHOTextBoxAutoAttribut.StyleController = Me.LayoutControlAutoIndexe
|
Me.ADDED_WHOTextBoxAutoAttribut.StyleController = Me.LayoutControlAutoIndexe
|
||||||
Me.ADDED_WHOTextBoxAutoAttribut.TabIndex = 19
|
Me.ADDED_WHOTextBoxAutoAttribut.TabIndex = 19
|
||||||
'
|
'
|
||||||
@@ -1654,12 +1654,12 @@ Partial Class frmAdmin_Globix
|
|||||||
'
|
'
|
||||||
Me.TextEdit3.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "ADDED_WHEN", True))
|
Me.TextEdit3.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "ADDED_WHEN", True))
|
||||||
Me.TextEdit3.Enabled = False
|
Me.TextEdit3.Enabled = False
|
||||||
Me.TextEdit3.Location = New System.Drawing.Point(369, 232)
|
Me.TextEdit3.Location = New System.Drawing.Point(361, 232)
|
||||||
Me.TextEdit3.MenuManager = Me.RibbonControl1
|
Me.TextEdit3.MenuManager = Me.RibbonControl1
|
||||||
Me.TextEdit3.Name = "TextEdit3"
|
Me.TextEdit3.Name = "TextEdit3"
|
||||||
Me.TextEdit3.Properties.Appearance.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
Me.TextEdit3.Properties.Appearance.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.TextEdit3.Properties.Appearance.Options.UseFont = True
|
Me.TextEdit3.Properties.Appearance.Options.UseFont = True
|
||||||
Me.TextEdit3.Size = New System.Drawing.Size(271, 20)
|
Me.TextEdit3.Size = New System.Drawing.Size(279, 20)
|
||||||
Me.TextEdit3.StyleController = Me.LayoutControlAutoIndexe
|
Me.TextEdit3.StyleController = Me.LayoutControlAutoIndexe
|
||||||
Me.TextEdit3.TabIndex = 20
|
Me.TextEdit3.TabIndex = 20
|
||||||
'
|
'
|
||||||
@@ -1667,24 +1667,24 @@ Partial Class frmAdmin_Globix
|
|||||||
'
|
'
|
||||||
Me.CHANGED_WHOTextEditAutoAttribut.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "CHANGED_WHO", True))
|
Me.CHANGED_WHOTextEditAutoAttribut.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "CHANGED_WHO", True))
|
||||||
Me.CHANGED_WHOTextEditAutoAttribut.EditValue = ""
|
Me.CHANGED_WHOTextEditAutoAttribut.EditValue = ""
|
||||||
Me.CHANGED_WHOTextEditAutoAttribut.Location = New System.Drawing.Point(825, 202)
|
Me.CHANGED_WHOTextEditAutoAttribut.Location = New System.Drawing.Point(817, 202)
|
||||||
Me.CHANGED_WHOTextEditAutoAttribut.MenuManager = Me.RibbonControl1
|
Me.CHANGED_WHOTextEditAutoAttribut.MenuManager = Me.RibbonControl1
|
||||||
Me.CHANGED_WHOTextEditAutoAttribut.Name = "CHANGED_WHOTextEditAutoAttribut"
|
Me.CHANGED_WHOTextEditAutoAttribut.Name = "CHANGED_WHOTextEditAutoAttribut"
|
||||||
Me.CHANGED_WHOTextEditAutoAttribut.Properties.Appearance.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
Me.CHANGED_WHOTextEditAutoAttribut.Properties.Appearance.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.CHANGED_WHOTextEditAutoAttribut.Properties.Appearance.Options.UseFont = True
|
Me.CHANGED_WHOTextEditAutoAttribut.Properties.Appearance.Options.UseFont = True
|
||||||
Me.CHANGED_WHOTextEditAutoAttribut.Size = New System.Drawing.Size(271, 20)
|
Me.CHANGED_WHOTextEditAutoAttribut.Size = New System.Drawing.Size(279, 20)
|
||||||
Me.CHANGED_WHOTextEditAutoAttribut.StyleController = Me.LayoutControlAutoIndexe
|
Me.CHANGED_WHOTextEditAutoAttribut.StyleController = Me.LayoutControlAutoIndexe
|
||||||
Me.CHANGED_WHOTextEditAutoAttribut.TabIndex = 21
|
Me.CHANGED_WHOTextEditAutoAttribut.TabIndex = 21
|
||||||
'
|
'
|
||||||
'TextEdit5
|
'TextEdit5
|
||||||
'
|
'
|
||||||
Me.TextEdit5.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "CHANGED_WHEN", True))
|
Me.TextEdit5.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "CHANGED_WHEN", True))
|
||||||
Me.TextEdit5.Location = New System.Drawing.Point(825, 232)
|
Me.TextEdit5.Location = New System.Drawing.Point(817, 232)
|
||||||
Me.TextEdit5.MenuManager = Me.RibbonControl1
|
Me.TextEdit5.MenuManager = Me.RibbonControl1
|
||||||
Me.TextEdit5.Name = "TextEdit5"
|
Me.TextEdit5.Name = "TextEdit5"
|
||||||
Me.TextEdit5.Properties.Appearance.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
Me.TextEdit5.Properties.Appearance.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.TextEdit5.Properties.Appearance.Options.UseFont = True
|
Me.TextEdit5.Properties.Appearance.Options.UseFont = True
|
||||||
Me.TextEdit5.Size = New System.Drawing.Size(271, 20)
|
Me.TextEdit5.Size = New System.Drawing.Size(279, 20)
|
||||||
Me.TextEdit5.StyleController = Me.LayoutControlAutoIndexe
|
Me.TextEdit5.StyleController = Me.LayoutControlAutoIndexe
|
||||||
Me.TextEdit5.TabIndex = 22
|
Me.TextEdit5.TabIndex = 22
|
||||||
'
|
'
|
||||||
@@ -1705,7 +1705,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem15.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem15.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem15.Size = New System.Drawing.Size(207, 30)
|
Me.LayoutControlItem15.Size = New System.Drawing.Size(207, 30)
|
||||||
Me.LayoutControlItem15.Text = "ID"
|
Me.LayoutControlItem15.Text = "ID"
|
||||||
Me.LayoutControlItem15.TextSize = New System.Drawing.Size(163, 13)
|
Me.LayoutControlItem15.TextSize = New System.Drawing.Size(155, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem23
|
'LayoutControlItem23
|
||||||
'
|
'
|
||||||
@@ -1716,7 +1716,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem23.Size = New System.Drawing.Size(124, 30)
|
Me.LayoutControlItem23.Size = New System.Drawing.Size(124, 30)
|
||||||
Me.LayoutControlItem23.Text = "Reihenfolge"
|
Me.LayoutControlItem23.Text = "Reihenfolge"
|
||||||
Me.LayoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize
|
Me.LayoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize
|
||||||
Me.LayoutControlItem23.TextSize = New System.Drawing.Size(63, 13)
|
Me.LayoutControlItem23.TextSize = New System.Drawing.Size(57, 13)
|
||||||
Me.LayoutControlItem23.TextToControlDistance = 5
|
Me.LayoutControlItem23.TextToControlDistance = 5
|
||||||
'
|
'
|
||||||
'LayoutControlItem33
|
'LayoutControlItem33
|
||||||
@@ -1737,7 +1737,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem34.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem34.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem34.Size = New System.Drawing.Size(561, 31)
|
Me.LayoutControlItem34.Size = New System.Drawing.Size(561, 31)
|
||||||
Me.LayoutControlItem34.Text = "Attribut"
|
Me.LayoutControlItem34.Text = "Attribut"
|
||||||
Me.LayoutControlItem34.TextSize = New System.Drawing.Size(163, 13)
|
Me.LayoutControlItem34.TextSize = New System.Drawing.Size(155, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem35
|
'LayoutControlItem35
|
||||||
'
|
'
|
||||||
@@ -1749,7 +1749,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem35.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem35.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem35.Size = New System.Drawing.Size(362, 40)
|
Me.LayoutControlItem35.Size = New System.Drawing.Size(362, 40)
|
||||||
Me.LayoutControlItem35.Text = "Fester oder Automatischer Wert"
|
Me.LayoutControlItem35.Text = "Fester oder Automatischer Wert"
|
||||||
Me.LayoutControlItem35.TextSize = New System.Drawing.Size(163, 13)
|
Me.LayoutControlItem35.TextSize = New System.Drawing.Size(155, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem14
|
'LayoutControlItem14
|
||||||
'
|
'
|
||||||
@@ -1781,7 +1781,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem37.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem37.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem37.Size = New System.Drawing.Size(437, 40)
|
Me.LayoutControlItem37.Size = New System.Drawing.Size(437, 40)
|
||||||
Me.LayoutControlItem37.Text = "FILE-Parameter"
|
Me.LayoutControlItem37.Text = "FILE-Parameter"
|
||||||
Me.LayoutControlItem37.TextSize = New System.Drawing.Size(163, 13)
|
Me.LayoutControlItem37.TextSize = New System.Drawing.Size(155, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem39
|
'LayoutControlItem39
|
||||||
'
|
'
|
||||||
@@ -1820,7 +1820,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.ADDED_WHOAutoAttribut.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.ADDED_WHOAutoAttribut.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.ADDED_WHOAutoAttribut.Size = New System.Drawing.Size(456, 30)
|
Me.ADDED_WHOAutoAttribut.Size = New System.Drawing.Size(456, 30)
|
||||||
Me.ADDED_WHOAutoAttribut.Text = "Erstellt wer"
|
Me.ADDED_WHOAutoAttribut.Text = "Erstellt wer"
|
||||||
Me.ADDED_WHOAutoAttribut.TextSize = New System.Drawing.Size(163, 13)
|
Me.ADDED_WHOAutoAttribut.TextSize = New System.Drawing.Size(155, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem41
|
'LayoutControlItem41
|
||||||
'
|
'
|
||||||
@@ -1830,7 +1830,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem41.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem41.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem41.Size = New System.Drawing.Size(456, 30)
|
Me.LayoutControlItem41.Size = New System.Drawing.Size(456, 30)
|
||||||
Me.LayoutControlItem41.Text = "Erstellt wann"
|
Me.LayoutControlItem41.Text = "Erstellt wann"
|
||||||
Me.LayoutControlItem41.TextSize = New System.Drawing.Size(163, 13)
|
Me.LayoutControlItem41.TextSize = New System.Drawing.Size(155, 13)
|
||||||
'
|
'
|
||||||
'CHANGED_WHOItemAutoAttribut
|
'CHANGED_WHOItemAutoAttribut
|
||||||
'
|
'
|
||||||
@@ -1840,7 +1840,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.CHANGED_WHOItemAutoAttribut.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.CHANGED_WHOItemAutoAttribut.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.CHANGED_WHOItemAutoAttribut.Size = New System.Drawing.Size(456, 30)
|
Me.CHANGED_WHOItemAutoAttribut.Size = New System.Drawing.Size(456, 30)
|
||||||
Me.CHANGED_WHOItemAutoAttribut.Text = "Geändert wer"
|
Me.CHANGED_WHOItemAutoAttribut.Text = "Geändert wer"
|
||||||
Me.CHANGED_WHOItemAutoAttribut.TextSize = New System.Drawing.Size(163, 13)
|
Me.CHANGED_WHOItemAutoAttribut.TextSize = New System.Drawing.Size(155, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem43
|
'LayoutControlItem43
|
||||||
'
|
'
|
||||||
@@ -1850,7 +1850,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem43.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem43.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem43.Size = New System.Drawing.Size(456, 30)
|
Me.LayoutControlItem43.Size = New System.Drawing.Size(456, 30)
|
||||||
Me.LayoutControlItem43.Text = "Geändert wann"
|
Me.LayoutControlItem43.Text = "Geändert wann"
|
||||||
Me.LayoutControlItem43.TextSize = New System.Drawing.Size(163, 13)
|
Me.LayoutControlItem43.TextSize = New System.Drawing.Size(155, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem45
|
'LayoutControlItem45
|
||||||
'
|
'
|
||||||
@@ -1861,7 +1861,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem45.Size = New System.Drawing.Size(84, 30)
|
Me.LayoutControlItem45.Size = New System.Drawing.Size(84, 30)
|
||||||
Me.LayoutControlItem45.Text = "Conn ID:"
|
Me.LayoutControlItem45.Text = "Conn ID:"
|
||||||
Me.LayoutControlItem45.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize
|
Me.LayoutControlItem45.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize
|
||||||
Me.LayoutControlItem45.TextSize = New System.Drawing.Size(45, 13)
|
Me.LayoutControlItem45.TextSize = New System.Drawing.Size(43, 13)
|
||||||
Me.LayoutControlItem45.TextToControlDistance = 5
|
Me.LayoutControlItem45.TextToControlDistance = 5
|
||||||
'
|
'
|
||||||
'LayoutControlItem44
|
'LayoutControlItem44
|
||||||
@@ -2087,10 +2087,10 @@ Partial Class frmAdmin_Globix
|
|||||||
'
|
'
|
||||||
Me.ChangedWhenAutoSelect.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "CHANGED_WHEN", True))
|
Me.ChangedWhenAutoSelect.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "CHANGED_WHEN", True))
|
||||||
Me.ChangedWhenAutoSelect.Enabled = False
|
Me.ChangedWhenAutoSelect.Enabled = False
|
||||||
Me.ChangedWhenAutoSelect.Location = New System.Drawing.Point(511, 117)
|
Me.ChangedWhenAutoSelect.Location = New System.Drawing.Point(505, 117)
|
||||||
Me.ChangedWhenAutoSelect.MenuManager = Me.RibbonControl1
|
Me.ChangedWhenAutoSelect.MenuManager = Me.RibbonControl1
|
||||||
Me.ChangedWhenAutoSelect.Name = "ChangedWhenAutoSelect"
|
Me.ChangedWhenAutoSelect.Name = "ChangedWhenAutoSelect"
|
||||||
Me.ChangedWhenAutoSelect.Size = New System.Drawing.Size(266, 20)
|
Me.ChangedWhenAutoSelect.Size = New System.Drawing.Size(272, 20)
|
||||||
Me.ChangedWhenAutoSelect.StyleController = Me.LayoutControl2
|
Me.ChangedWhenAutoSelect.StyleController = Me.LayoutControl2
|
||||||
Me.ChangedWhenAutoSelect.TabIndex = 16
|
Me.ChangedWhenAutoSelect.TabIndex = 16
|
||||||
'
|
'
|
||||||
@@ -2103,10 +2103,10 @@ Partial Class frmAdmin_Globix
|
|||||||
'
|
'
|
||||||
Me.TextEdit8.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "ADDED_WHEN", True))
|
Me.TextEdit8.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "ADDED_WHEN", True))
|
||||||
Me.TextEdit8.Enabled = False
|
Me.TextEdit8.Enabled = False
|
||||||
Me.TextEdit8.Location = New System.Drawing.Point(125, 117)
|
Me.TextEdit8.Location = New System.Drawing.Point(119, 117)
|
||||||
Me.TextEdit8.MenuManager = Me.RibbonControl1
|
Me.TextEdit8.MenuManager = Me.RibbonControl1
|
||||||
Me.TextEdit8.Name = "TextEdit8"
|
Me.TextEdit8.Name = "TextEdit8"
|
||||||
Me.TextEdit8.Size = New System.Drawing.Size(266, 20)
|
Me.TextEdit8.Size = New System.Drawing.Size(272, 20)
|
||||||
Me.TextEdit8.StyleController = Me.LayoutControl2
|
Me.TextEdit8.StyleController = Me.LayoutControl2
|
||||||
Me.TextEdit8.TabIndex = 15
|
Me.TextEdit8.TabIndex = 15
|
||||||
'
|
'
|
||||||
@@ -2114,10 +2114,10 @@ Partial Class frmAdmin_Globix
|
|||||||
'
|
'
|
||||||
Me.AddedWhoAutoSelect.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "ADDED_WHO", True))
|
Me.AddedWhoAutoSelect.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "ADDED_WHO", True))
|
||||||
Me.AddedWhoAutoSelect.Enabled = False
|
Me.AddedWhoAutoSelect.Enabled = False
|
||||||
Me.AddedWhoAutoSelect.Location = New System.Drawing.Point(125, 87)
|
Me.AddedWhoAutoSelect.Location = New System.Drawing.Point(119, 87)
|
||||||
Me.AddedWhoAutoSelect.MenuManager = Me.RibbonControl1
|
Me.AddedWhoAutoSelect.MenuManager = Me.RibbonControl1
|
||||||
Me.AddedWhoAutoSelect.Name = "AddedWhoAutoSelect"
|
Me.AddedWhoAutoSelect.Name = "AddedWhoAutoSelect"
|
||||||
Me.AddedWhoAutoSelect.Size = New System.Drawing.Size(266, 20)
|
Me.AddedWhoAutoSelect.Size = New System.Drawing.Size(272, 20)
|
||||||
Me.AddedWhoAutoSelect.StyleController = Me.LayoutControl2
|
Me.AddedWhoAutoSelect.StyleController = Me.LayoutControl2
|
||||||
Me.AddedWhoAutoSelect.TabIndex = 14
|
Me.AddedWhoAutoSelect.TabIndex = 14
|
||||||
'
|
'
|
||||||
@@ -2125,18 +2125,18 @@ Partial Class frmAdmin_Globix
|
|||||||
'
|
'
|
||||||
Me.ChangedWhoAutoSelect.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "CHANGED_WHO", True))
|
Me.ChangedWhoAutoSelect.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "CHANGED_WHO", True))
|
||||||
Me.ChangedWhoAutoSelect.Enabled = False
|
Me.ChangedWhoAutoSelect.Enabled = False
|
||||||
Me.ChangedWhoAutoSelect.Location = New System.Drawing.Point(511, 87)
|
Me.ChangedWhoAutoSelect.Location = New System.Drawing.Point(505, 87)
|
||||||
Me.ChangedWhoAutoSelect.MenuManager = Me.RibbonControl1
|
Me.ChangedWhoAutoSelect.MenuManager = Me.RibbonControl1
|
||||||
Me.ChangedWhoAutoSelect.Name = "ChangedWhoAutoSelect"
|
Me.ChangedWhoAutoSelect.Name = "ChangedWhoAutoSelect"
|
||||||
Me.ChangedWhoAutoSelect.Size = New System.Drawing.Size(266, 20)
|
Me.ChangedWhoAutoSelect.Size = New System.Drawing.Size(272, 20)
|
||||||
Me.ChangedWhoAutoSelect.StyleController = Me.LayoutControl2
|
Me.ChangedWhoAutoSelect.StyleController = Me.LayoutControl2
|
||||||
Me.ChangedWhoAutoSelect.TabIndex = 13
|
Me.ChangedWhoAutoSelect.TabIndex = 13
|
||||||
'
|
'
|
||||||
'txtDateinameTest
|
'txtDateinameTest
|
||||||
'
|
'
|
||||||
Me.txtDateinameTest.Location = New System.Drawing.Point(122, 60)
|
Me.txtDateinameTest.Location = New System.Drawing.Point(116, 60)
|
||||||
Me.txtDateinameTest.Name = "txtDateinameTest"
|
Me.txtDateinameTest.Name = "txtDateinameTest"
|
||||||
Me.txtDateinameTest.Size = New System.Drawing.Size(658, 20)
|
Me.txtDateinameTest.Size = New System.Drawing.Size(664, 20)
|
||||||
Me.txtDateinameTest.TabIndex = 12
|
Me.txtDateinameTest.TabIndex = 12
|
||||||
Me.txtDateinameTest.Text = "Example.pdf"
|
Me.txtDateinameTest.Text = "Example.pdf"
|
||||||
'
|
'
|
||||||
@@ -2153,18 +2153,18 @@ Partial Class frmAdmin_Globix
|
|||||||
'REGEXTextBox
|
'REGEXTextBox
|
||||||
'
|
'
|
||||||
Me.REGEXTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "REGEX", True))
|
Me.REGEXTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "REGEX", True))
|
||||||
Me.REGEXTextBox.Location = New System.Drawing.Point(122, 36)
|
Me.REGEXTextBox.Location = New System.Drawing.Point(116, 36)
|
||||||
Me.REGEXTextBox.Name = "REGEXTextBox"
|
Me.REGEXTextBox.Name = "REGEXTextBox"
|
||||||
Me.REGEXTextBox.Size = New System.Drawing.Size(658, 20)
|
Me.REGEXTextBox.Size = New System.Drawing.Size(664, 20)
|
||||||
Me.REGEXTextBox.TabIndex = 6
|
Me.REGEXTextBox.TabIndex = 6
|
||||||
'
|
'
|
||||||
'GUIDTextBoxAutoSelect
|
'GUIDTextBoxAutoSelect
|
||||||
'
|
'
|
||||||
Me.GUIDTextBoxAutoSelect.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "GUID", True))
|
Me.GUIDTextBoxAutoSelect.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "GUID", True))
|
||||||
Me.GUIDTextBoxAutoSelect.Location = New System.Drawing.Point(122, 12)
|
Me.GUIDTextBoxAutoSelect.Location = New System.Drawing.Point(116, 12)
|
||||||
Me.GUIDTextBoxAutoSelect.Name = "GUIDTextBoxAutoSelect"
|
Me.GUIDTextBoxAutoSelect.Name = "GUIDTextBoxAutoSelect"
|
||||||
Me.GUIDTextBoxAutoSelect.ReadOnly = True
|
Me.GUIDTextBoxAutoSelect.ReadOnly = True
|
||||||
Me.GUIDTextBoxAutoSelect.Size = New System.Drawing.Size(42, 20)
|
Me.GUIDTextBoxAutoSelect.Size = New System.Drawing.Size(48, 20)
|
||||||
Me.GUIDTextBoxAutoSelect.TabIndex = 5
|
Me.GUIDTextBoxAutoSelect.TabIndex = 5
|
||||||
'
|
'
|
||||||
'LayoutControlGroup5
|
'LayoutControlGroup5
|
||||||
@@ -2183,7 +2183,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem55.Name = "LayoutControlItem55"
|
Me.LayoutControlItem55.Name = "LayoutControlItem55"
|
||||||
Me.LayoutControlItem55.Size = New System.Drawing.Size(772, 24)
|
Me.LayoutControlItem55.Size = New System.Drawing.Size(772, 24)
|
||||||
Me.LayoutControlItem55.Text = "Regular Expression"
|
Me.LayoutControlItem55.Text = "Regular Expression"
|
||||||
Me.LayoutControlItem55.TextSize = New System.Drawing.Size(98, 13)
|
Me.LayoutControlItem55.TextSize = New System.Drawing.Size(92, 13)
|
||||||
'
|
'
|
||||||
'EmptySpaceItem9
|
'EmptySpaceItem9
|
||||||
'
|
'
|
||||||
@@ -2211,7 +2211,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem54.Name = "LayoutControlItem54"
|
Me.LayoutControlItem54.Name = "LayoutControlItem54"
|
||||||
Me.LayoutControlItem54.Size = New System.Drawing.Size(156, 24)
|
Me.LayoutControlItem54.Size = New System.Drawing.Size(156, 24)
|
||||||
Me.LayoutControlItem54.Text = "ID"
|
Me.LayoutControlItem54.Text = "ID"
|
||||||
Me.LayoutControlItem54.TextSize = New System.Drawing.Size(98, 13)
|
Me.LayoutControlItem54.TextSize = New System.Drawing.Size(92, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem53
|
'LayoutControlItem53
|
||||||
'
|
'
|
||||||
@@ -2240,7 +2240,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem57.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem57.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem57.Size = New System.Drawing.Size(386, 30)
|
Me.LayoutControlItem57.Size = New System.Drawing.Size(386, 30)
|
||||||
Me.LayoutControlItem57.Text = "Erstellt wer"
|
Me.LayoutControlItem57.Text = "Erstellt wer"
|
||||||
Me.LayoutControlItem57.TextSize = New System.Drawing.Size(98, 13)
|
Me.LayoutControlItem57.TextSize = New System.Drawing.Size(92, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem59
|
'LayoutControlItem59
|
||||||
'
|
'
|
||||||
@@ -2252,7 +2252,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem59.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem59.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem59.Size = New System.Drawing.Size(386, 145)
|
Me.LayoutControlItem59.Size = New System.Drawing.Size(386, 145)
|
||||||
Me.LayoutControlItem59.Text = "Geändert wann"
|
Me.LayoutControlItem59.Text = "Geändert wann"
|
||||||
Me.LayoutControlItem59.TextSize = New System.Drawing.Size(98, 13)
|
Me.LayoutControlItem59.TextSize = New System.Drawing.Size(92, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem58
|
'LayoutControlItem58
|
||||||
'
|
'
|
||||||
@@ -2264,7 +2264,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem58.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem58.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem58.Size = New System.Drawing.Size(386, 145)
|
Me.LayoutControlItem58.Size = New System.Drawing.Size(386, 145)
|
||||||
Me.LayoutControlItem58.Text = "Erstellt wann"
|
Me.LayoutControlItem58.Text = "Erstellt wann"
|
||||||
Me.LayoutControlItem58.TextSize = New System.Drawing.Size(98, 13)
|
Me.LayoutControlItem58.TextSize = New System.Drawing.Size(92, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem56
|
'LayoutControlItem56
|
||||||
'
|
'
|
||||||
@@ -2276,7 +2276,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem56.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
Me.LayoutControlItem56.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
|
||||||
Me.LayoutControlItem56.Size = New System.Drawing.Size(386, 30)
|
Me.LayoutControlItem56.Size = New System.Drawing.Size(386, 30)
|
||||||
Me.LayoutControlItem56.Text = "Geändert wer"
|
Me.LayoutControlItem56.Text = "Geändert wer"
|
||||||
Me.LayoutControlItem56.TextSize = New System.Drawing.Size(98, 13)
|
Me.LayoutControlItem56.TextSize = New System.Drawing.Size(92, 13)
|
||||||
'
|
'
|
||||||
'LayoutControlItem60
|
'LayoutControlItem60
|
||||||
'
|
'
|
||||||
@@ -2285,7 +2285,7 @@ Partial Class frmAdmin_Globix
|
|||||||
Me.LayoutControlItem60.Name = "LayoutControlItem60"
|
Me.LayoutControlItem60.Name = "LayoutControlItem60"
|
||||||
Me.LayoutControlItem60.Size = New System.Drawing.Size(772, 24)
|
Me.LayoutControlItem60.Size = New System.Drawing.Size(772, 24)
|
||||||
Me.LayoutControlItem60.Text = "Dateiname für Test"
|
Me.LayoutControlItem60.Text = "Dateiname für Test"
|
||||||
Me.LayoutControlItem60.TextSize = New System.Drawing.Size(98, 13)
|
Me.LayoutControlItem60.TextSize = New System.Drawing.Size(92, 13)
|
||||||
'
|
'
|
||||||
'ListBox2
|
'ListBox2
|
||||||
'
|
'
|
||||||
|
|||||||
@@ -159,6 +159,9 @@
|
|||||||
<metadata name="GlobixDataset.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="GlobixDataset.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>350, 17</value>
|
<value>350, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<metadata name="GlobixDataset.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>350, 17</value>
|
||||||
|
</metadata>
|
||||||
<metadata name="DSIDB_Stammdaten.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="DSIDB_Stammdaten.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>17, 17</value>
|
<value>17, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
@@ -209,6 +212,9 @@
|
|||||||
NHY0aDRMMTQsMjR6IiBjbGFzcz0iQmx1ZSIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
NHY0aDRMMTQsMjR6IiBjbGFzcz0iQmx1ZSIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
|
<metadata name="TBDD_INDEX_MANBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>1161, 17</value>
|
||||||
|
</metadata>
|
||||||
<metadata name="VWIDB_BE_ATTRIBUTEBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="VWIDB_BE_ATTRIBUTEBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>752, 56</value>
|
<value>752, 56</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
@@ -298,6 +304,9 @@
|
|||||||
IiBjbGFzcz0iQmx1ZSIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
IiBjbGFzcz0iQmx1ZSIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
|
<metadata name="TBDD_INDEX_AUTOMBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 95</value>
|
||||||
|
</metadata>
|
||||||
<data name="XtraTabPageAutoIndexe.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="XtraTabPageAutoIndexe.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
@@ -501,6 +510,12 @@
|
|||||||
MTcuNywyNi4zeiIgY2xhc3M9IkJsYWNrIiAvPg0KICA8L2c+DQo8L3N2Zz4L
|
MTcuNywyNi4zeiIgY2xhc3M9IkJsYWNrIiAvPg0KICA8L2c+DQo8L3N2Zz4L
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
|
<metadata name="VWIDB_OBJECT_STOREBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>246, 56</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="VWIDB_BE_ATTRIBUTEBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>752, 56</value>
|
||||||
|
</metadata>
|
||||||
<metadata name="TBDD_INDEX_MANTableAdapter.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="TBDD_INDEX_MANTableAdapter.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>17, 56</value>
|
<value>17, 56</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
@@ -520,6 +535,6 @@
|
|||||||
<value>311, 134</value>
|
<value>311, 134</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>161</value>
|
<value>118</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
</root>
|
</root>
|
||||||
@@ -622,8 +622,4 @@ Public Class frmAdmin_Globix
|
|||||||
SQL_RESULTTextBox1.Text = String.Empty
|
SQL_RESULTTextBox1.Text = String.Empty
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub ListBoxAutoIndexe_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ListBoxAutoIndexe.SelectedIndexChanged
|
|
||||||
|
|
||||||
End Sub
|
|
||||||
End Class
|
End Class
|
||||||
@@ -23,7 +23,7 @@ Partial Class frmSQLDesigner
|
|||||||
<System.Diagnostics.DebuggerStepThrough()> _
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
Private Sub InitializeComponent()
|
Private Sub InitializeComponent()
|
||||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmSQLDesigner))
|
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmSQLDesigner))
|
||||||
Dim DataGridViewCellStyle4 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
|
Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
|
||||||
Me.Label14 = New System.Windows.Forms.Label()
|
Me.Label14 = New System.Windows.Forms.Label()
|
||||||
Me.cmbConnection = New System.Windows.Forms.ComboBox()
|
Me.cmbConnection = New System.Windows.Forms.ComboBox()
|
||||||
Me.Label2 = New System.Windows.Forms.Label()
|
Me.Label2 = New System.Windows.Forms.Label()
|
||||||
@@ -211,8 +211,8 @@ Partial Class frmSQLDesigner
|
|||||||
'
|
'
|
||||||
Me.dgvPlaceholders.AllowUserToAddRows = False
|
Me.dgvPlaceholders.AllowUserToAddRows = False
|
||||||
Me.dgvPlaceholders.AllowUserToDeleteRows = False
|
Me.dgvPlaceholders.AllowUserToDeleteRows = False
|
||||||
DataGridViewCellStyle4.BackColor = System.Drawing.Color.Cyan
|
DataGridViewCellStyle1.BackColor = System.Drawing.Color.Cyan
|
||||||
Me.dgvPlaceholders.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle4
|
Me.dgvPlaceholders.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
|
||||||
Me.dgvPlaceholders.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
|
Me.dgvPlaceholders.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
|
||||||
Me.dgvPlaceholders.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.colPlaceholder, Me.colReplace})
|
Me.dgvPlaceholders.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.colPlaceholder, Me.colReplace})
|
||||||
Me.dgvPlaceholders.Enabled = False
|
Me.dgvPlaceholders.Enabled = False
|
||||||
@@ -280,7 +280,7 @@ Partial Class frmSQLDesigner
|
|||||||
Me.RibbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPage1})
|
Me.RibbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPage1})
|
||||||
Me.RibbonControl1.RepositoryItems.AddRange(New DevExpress.XtraEditors.Repository.RepositoryItem() {Me.RepositoryItemComboBox1, Me.RepositoryItemLookUpEdit1, Me.RepositoryItemLookUpEdit2, Me.RepositoryItemLookUpEdit3})
|
Me.RibbonControl1.RepositoryItems.AddRange(New DevExpress.XtraEditors.Repository.RepositoryItem() {Me.RepositoryItemComboBox1, Me.RepositoryItemLookUpEdit1, Me.RepositoryItemLookUpEdit2, Me.RepositoryItemLookUpEdit3})
|
||||||
Me.RibbonControl1.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.[False]
|
Me.RibbonControl1.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.[False]
|
||||||
Me.RibbonControl1.Size = New System.Drawing.Size(995, 158)
|
Me.RibbonControl1.Size = New System.Drawing.Size(997, 158)
|
||||||
Me.RibbonControl1.StatusBar = Me.RibbonStatusBar1
|
Me.RibbonControl1.StatusBar = Me.RibbonStatusBar1
|
||||||
'
|
'
|
||||||
'BarButtonItem1
|
'BarButtonItem1
|
||||||
@@ -365,10 +365,10 @@ Partial Class frmSQLDesigner
|
|||||||
'RibbonStatusBar1
|
'RibbonStatusBar1
|
||||||
'
|
'
|
||||||
Me.RibbonStatusBar1.ItemLinks.Add(Me.bsiInfo)
|
Me.RibbonStatusBar1.ItemLinks.Add(Me.bsiInfo)
|
||||||
Me.RibbonStatusBar1.Location = New System.Drawing.Point(0, 564)
|
Me.RibbonStatusBar1.Location = New System.Drawing.Point(0, 588)
|
||||||
Me.RibbonStatusBar1.Name = "RibbonStatusBar1"
|
Me.RibbonStatusBar1.Name = "RibbonStatusBar1"
|
||||||
Me.RibbonStatusBar1.Ribbon = Me.RibbonControl1
|
Me.RibbonStatusBar1.Ribbon = Me.RibbonControl1
|
||||||
Me.RibbonStatusBar1.Size = New System.Drawing.Size(995, 24)
|
Me.RibbonStatusBar1.Size = New System.Drawing.Size(997, 24)
|
||||||
'
|
'
|
||||||
'RibbonPage2
|
'RibbonPage2
|
||||||
'
|
'
|
||||||
@@ -385,7 +385,7 @@ Partial Class frmSQLDesigner
|
|||||||
Me.GridControl1.MainView = Me.GridView1
|
Me.GridControl1.MainView = Me.GridView1
|
||||||
Me.GridControl1.MenuManager = Me.RibbonControl1
|
Me.GridControl1.MenuManager = Me.RibbonControl1
|
||||||
Me.GridControl1.Name = "GridControl1"
|
Me.GridControl1.Name = "GridControl1"
|
||||||
Me.GridControl1.Size = New System.Drawing.Size(691, 133)
|
Me.GridControl1.Size = New System.Drawing.Size(693, 157)
|
||||||
Me.GridControl1.TabIndex = 124
|
Me.GridControl1.TabIndex = 124
|
||||||
Me.GridControl1.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.GridView1})
|
Me.GridControl1.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.GridView1})
|
||||||
'
|
'
|
||||||
@@ -399,7 +399,7 @@ Partial Class frmSQLDesigner
|
|||||||
Me.Appearance.Options.UseFont = True
|
Me.Appearance.Options.UseFont = True
|
||||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 17.0!)
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 17.0!)
|
||||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
Me.ClientSize = New System.Drawing.Size(995, 588)
|
Me.ClientSize = New System.Drawing.Size(997, 612)
|
||||||
Me.Controls.Add(Me.GridControl1)
|
Me.Controls.Add(Me.GridControl1)
|
||||||
Me.Controls.Add(Me.lblAttributeAuto)
|
Me.Controls.Add(Me.lblAttributeAuto)
|
||||||
Me.Controls.Add(Me.btnAddAttributeAuto)
|
Me.Controls.Add(Me.btnAddAttributeAuto)
|
||||||
|
|||||||
@@ -52,9 +52,7 @@ Namespace My
|
|||||||
|
|
||||||
My.Application.Service.Client = New Client(LogConfig, oAppServerAddress, oAppServerPort)
|
My.Application.Service.Client = New Client(LogConfig, oAppServerAddress, oAppServerPort)
|
||||||
If Not IsNothing(My.Application.Service.Client) Then
|
If Not IsNothing(My.Application.Service.Client) Then
|
||||||
If My.Application.Service.Client.Connect() Then
|
My.Application.Service.Client.Connect()
|
||||||
My.Application.Service.IsActive = True
|
|
||||||
End If
|
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
_Logger.Warn($"Could not initialize the AppServer: {ex.Message}")
|
_Logger.Warn($"Could not initialize the AppServer: {ex.Message}")
|
||||||
|
|||||||
@@ -119,15 +119,13 @@ Public Class ClassInit
|
|||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
MyApplication.Service.Address = My.SystemConfig.AppServerConfig
|
' These Properties need to be set directly on
|
||||||
Dim oServerData = Client.ParseServiceAddress(My.SystemConfig.AppServerConfig)
|
|
||||||
|
|
||||||
My.Application.Service.Client = New Client(LogConfig, oServerData.Item1, oServerData.Item2)
|
My.Application.Service.Address = My.SystemConfig.AppServerConfig
|
||||||
|
My.Application.Service.Client = New Client(LogConfig, My.SystemConfig.AppServerConfig)
|
||||||
|
|
||||||
If Not IsNothing(My.Application.Service.Client) Then
|
If Not IsNothing(My.Application.Service.Client) Then
|
||||||
If My.Application.Service.Client.Connect() Then
|
My.Application.Service.Client.Connect()
|
||||||
MyApplication.Service.IsActive = True
|
|
||||||
End If
|
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
Logger.Error(ex)
|
Logger.Error(ex)
|
||||||
|
|||||||
@@ -9,53 +9,39 @@
|
|||||||
<TableUISetting Name="TBDD_DOKUMENTART">
|
<TableUISetting Name="TBDD_DOKUMENTART">
|
||||||
<ColumnUISettings>
|
<ColumnUISettings>
|
||||||
<ColumnUISetting Name="DUPLICATE_HANDLING">
|
<ColumnUISetting Name="DUPLICATE_HANDLING">
|
||||||
<ControlSettings>
|
<ControlSettings><ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
<ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form">
|
|
||||||
<BindableControlInfo Name="ComboBox" Type="System.Windows.Forms.ComboBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<BindableControlInfo Name="ComboBox" Type="System.Windows.Forms.ComboBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
</ControlSetting>
|
</ControlSetting></ControlSettings>
|
||||||
</ControlSettings>
|
|
||||||
</ColumnUISetting>
|
</ColumnUISetting>
|
||||||
<ColumnUISetting Name="LANGUAGE">
|
<ColumnUISetting Name="LANGUAGE">
|
||||||
<ControlSettings>
|
<ControlSettings><ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
<ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form">
|
|
||||||
<BindableControlInfo Name="ComboBox" Type="System.Windows.Forms.ComboBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<BindableControlInfo Name="ComboBox" Type="System.Windows.Forms.ComboBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
</ControlSetting>
|
</ControlSetting></ControlSettings>
|
||||||
</ControlSettings>
|
|
||||||
</ColumnUISetting>
|
</ColumnUISetting>
|
||||||
<ColumnUISetting Name="SEQUENCE">
|
<ColumnUISetting Name="SEQUENCE">
|
||||||
<ControlSettings>
|
<ControlSettings><ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
<ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form">
|
|
||||||
<BindableControlInfo Name="NumericUpDown" Type="System.Windows.Forms.NumericUpDown" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<BindableControlInfo Name="NumericUpDown" Type="System.Windows.Forms.NumericUpDown" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
</ControlSetting>
|
</ControlSetting></ControlSettings>
|
||||||
</ControlSettings>
|
|
||||||
</ColumnUISetting>
|
</ColumnUISetting>
|
||||||
<ColumnUISetting Name="ERSTELLTWANN">
|
<ColumnUISetting Name="ERSTELLTWANN">
|
||||||
<ControlSettings>
|
<ControlSettings><ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
<ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form">
|
|
||||||
<BindableControlInfo Name="TextBox" Type="System.Windows.Forms.TextBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<BindableControlInfo Name="TextBox" Type="System.Windows.Forms.TextBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
</ControlSetting>
|
</ControlSetting></ControlSettings>
|
||||||
</ControlSettings>
|
|
||||||
</ColumnUISetting>
|
</ColumnUISetting>
|
||||||
<ColumnUISetting Name="GEAENDERTWANN">
|
<ColumnUISetting Name="GEAENDERTWANN">
|
||||||
<ControlSettings>
|
<ControlSettings><ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
<ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form">
|
|
||||||
<BindableControlInfo Name="TextBox" Type="System.Windows.Forms.TextBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<BindableControlInfo Name="TextBox" Type="System.Windows.Forms.TextBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
</ControlSetting>
|
</ControlSetting></ControlSettings>
|
||||||
</ControlSettings>
|
|
||||||
</ColumnUISetting>
|
</ColumnUISetting>
|
||||||
<ColumnUISetting Name="IDB_OBJECT_STORE_ID">
|
<ColumnUISetting Name="IDB_OBJECT_STORE_ID">
|
||||||
<ControlSettings>
|
<ControlSettings><ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
<ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form">
|
|
||||||
<BindableControlInfo Name="ComboBox" Type="System.Windows.Forms.ComboBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<BindableControlInfo Name="ComboBox" Type="System.Windows.Forms.ComboBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
</ControlSetting>
|
</ControlSetting></ControlSettings>
|
||||||
</ControlSettings>
|
|
||||||
</ColumnUISetting>
|
</ColumnUISetting>
|
||||||
<ColumnUISetting Name="IDB_DOCTYPE_ID">
|
<ColumnUISetting Name="IDB_DOCTYPE_ID">
|
||||||
<ControlSettings>
|
<ControlSettings><ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||||
<ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form">
|
|
||||||
<BindableControlInfo Name="ComboBox" Type="System.Windows.Forms.ComboBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<BindableControlInfo Name="ComboBox" Type="System.Windows.Forms.ComboBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
</ControlSetting>
|
</ControlSetting></ControlSettings>
|
||||||
</ControlSettings>
|
|
||||||
</ColumnUISetting>
|
</ColumnUISetting>
|
||||||
</ColumnUISettings>
|
</ColumnUISettings>
|
||||||
</TableUISetting>
|
</TableUISetting>
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ ORDER BY TBDD_DOKUMENTART.BEZEICHNUNG</CommandText>
|
|||||||
</TableAdapter>
|
</TableAdapter>
|
||||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="TBDD_INDEX_MANTableAdapter" GeneratorDataComponentClassName="TBDD_INDEX_MANTableAdapter" Name="TBDD_INDEX_MAN" UserDataComponentName="TBDD_INDEX_MANTableAdapter">
|
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="TBDD_INDEX_MANTableAdapter" GeneratorDataComponentClassName="TBDD_INDEX_MANTableAdapter" Name="TBDD_INDEX_MAN" UserDataComponentName="TBDD_INDEX_MANTableAdapter">
|
||||||
<MainSource>
|
<MainSource>
|
||||||
<DbSource ConnectionRef="ECMConnectionStringDEFAULT (Settings)" DbObjectName="DD_ECM.dbo.TBDD_INDEX_MAN" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
<DbSource ConnectionRef="DD_ECMConnectionString (Settings)" DbObjectName="DD_ECM.dbo.TBDD_INDEX_MAN" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||||
<DeleteCommand>
|
<DeleteCommand>
|
||||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||||
<CommandText>DELETE FROM TBDD_INDEX_MAN
|
<CommandText>DELETE FROM TBDD_INDEX_MAN
|
||||||
@@ -241,7 +241,7 @@ SELECT GUID, DOK_ID, NAME, WD_INDEX, COMMENT, DATATYPE, SUGGESTION, DEFAULT_VALU
|
|||||||
</TableAdapter>
|
</TableAdapter>
|
||||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="TBDD_INDEX_AUTOMTableAdapter" GeneratorDataComponentClassName="TBDD_INDEX_AUTOMTableAdapter" Name="TBDD_INDEX_AUTOM" UserDataComponentName="TBDD_INDEX_AUTOMTableAdapter">
|
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="TBDD_INDEX_AUTOMTableAdapter" GeneratorDataComponentClassName="TBDD_INDEX_AUTOMTableAdapter" Name="TBDD_INDEX_AUTOM" UserDataComponentName="TBDD_INDEX_AUTOMTableAdapter">
|
||||||
<MainSource>
|
<MainSource>
|
||||||
<DbSource ConnectionRef="ECMConnectionStringDEFAULT (Settings)" DbObjectName="DD_ECM.dbo.TBDD_INDEX_AUTOM" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
<DbSource ConnectionRef="DD_ECMConnectionString (Settings)" DbObjectName="DD_ECM.dbo.TBDD_INDEX_AUTOM" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||||
<DeleteCommand>
|
<DeleteCommand>
|
||||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||||
<CommandText>DELETE FROM TBDD_INDEX_AUTOM
|
<CommandText>DELETE FROM TBDD_INDEX_AUTOM
|
||||||
@@ -330,7 +330,7 @@ SELECT GUID, DOCTYPE_ID, ENTITY_ID, INDEXNAME, VALUE, CONNECTION_ID, SQL_RESULT,
|
|||||||
</TableAdapter>
|
</TableAdapter>
|
||||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="TBGI_REGEX_DOCTYPETableAdapter" GeneratorDataComponentClassName="TBGI_REGEX_DOCTYPETableAdapter" Name="TBGI_REGEX_DOCTYPE" UserDataComponentName="TBGI_REGEX_DOCTYPETableAdapter">
|
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="TBGI_REGEX_DOCTYPETableAdapter" GeneratorDataComponentClassName="TBGI_REGEX_DOCTYPETableAdapter" Name="TBGI_REGEX_DOCTYPE" UserDataComponentName="TBGI_REGEX_DOCTYPETableAdapter">
|
||||||
<MainSource>
|
<MainSource>
|
||||||
<DbSource ConnectionRef="ECMConnectionStringDEFAULT (Settings)" DbObjectName="DD_ECM.dbo.TBGI_REGEX_DOCTYPE" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
<DbSource ConnectionRef="DD_ECMConnectionString (Settings)" DbObjectName="DD_ECM.dbo.TBGI_REGEX_DOCTYPE" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||||
<DeleteCommand>
|
<DeleteCommand>
|
||||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||||
<CommandText>DELETE FROM TBGI_REGEX_DOCTYPE
|
<CommandText>DELETE FROM TBGI_REGEX_DOCTYPE
|
||||||
@@ -399,7 +399,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
<xs:element name="GlobixDataset" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="GlobixDataset" msprop:Generator_UserDSName="GlobixDataset">
|
<xs:element name="GlobixDataset" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="GlobixDataset" msprop:Generator_UserDSName="GlobixDataset">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||||
<xs:element name="TBTEMP_INDEXRESULTS" msprop:Generator_TableClassName="TBTEMP_INDEXRESULTSDataTable" msprop:Generator_TableVarName="tableTBTEMP_INDEXRESULTS" msprop:Generator_RowChangedName="TBTEMP_INDEXRESULTSRowChanged" msprop:Generator_TablePropName="TBTEMP_INDEXRESULTS" msprop:Generator_RowDeletingName="TBTEMP_INDEXRESULTSRowDeleting" msprop:Generator_RowChangingName="TBTEMP_INDEXRESULTSRowChanging" msprop:Generator_RowEvHandlerName="TBTEMP_INDEXRESULTSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBTEMP_INDEXRESULTSRowDeleted" msprop:Generator_RowClassName="TBTEMP_INDEXRESULTSRow" msprop:Generator_UserTableName="TBTEMP_INDEXRESULTS" msprop:Generator_RowEvArgName="TBTEMP_INDEXRESULTSRowChangeEvent">
|
<xs:element name="TBTEMP_INDEXRESULTS" msprop:Generator_TableClassName="TBTEMP_INDEXRESULTSDataTable" msprop:Generator_TableVarName="tableTBTEMP_INDEXRESULTS" msprop:Generator_TablePropName="TBTEMP_INDEXRESULTS" msprop:Generator_RowDeletingName="TBTEMP_INDEXRESULTSRowDeleting" msprop:Generator_RowChangingName="TBTEMP_INDEXRESULTSRowChanging" msprop:Generator_RowEvHandlerName="TBTEMP_INDEXRESULTSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBTEMP_INDEXRESULTSRowDeleted" msprop:Generator_UserTableName="TBTEMP_INDEXRESULTS" msprop:Generator_RowChangedName="TBTEMP_INDEXRESULTSRowChanged" msprop:Generator_RowEvArgName="TBTEMP_INDEXRESULTSRowChangeEvent" msprop:Generator_RowClassName="TBTEMP_INDEXRESULTSRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="Indexname" msprop:Generator_ColumnVarNameInTable="columnIndexname" msprop:Generator_ColumnPropNameInRow="Indexname" msprop:Generator_ColumnPropNameInTable="IndexnameColumn" msprop:Generator_UserColumnName="Indexname" type="xs:string" minOccurs="0" />
|
<xs:element name="Indexname" msprop:Generator_ColumnVarNameInTable="columnIndexname" msprop:Generator_ColumnPropNameInRow="Indexname" msprop:Generator_ColumnPropNameInTable="IndexnameColumn" msprop:Generator_UserColumnName="Indexname" type="xs:string" minOccurs="0" />
|
||||||
@@ -408,7 +408,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBDD_DOKUMENTART" msprop:Generator_TableClassName="TBDD_DOKUMENTARTDataTable" msprop:Generator_TableVarName="tableTBDD_DOKUMENTART" msprop:Generator_TablePropName="TBDD_DOKUMENTART" msprop:Generator_RowDeletingName="TBDD_DOKUMENTARTRowDeleting" msprop:Generator_RowChangingName="TBDD_DOKUMENTARTRowChanging" msprop:Generator_RowEvHandlerName="TBDD_DOKUMENTARTRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_DOKUMENTARTRowDeleted" msprop:Generator_UserTableName="TBDD_DOKUMENTART" msprop:Generator_RowChangedName="TBDD_DOKUMENTARTRowChanged" msprop:Generator_RowEvArgName="TBDD_DOKUMENTARTRowChangeEvent" msprop:Generator_RowClassName="TBDD_DOKUMENTARTRow">
|
<xs:element name="TBDD_DOKUMENTART" msprop:Generator_TableClassName="TBDD_DOKUMENTARTDataTable" msprop:Generator_TableVarName="tableTBDD_DOKUMENTART" msprop:Generator_RowChangedName="TBDD_DOKUMENTARTRowChanged" msprop:Generator_TablePropName="TBDD_DOKUMENTART" msprop:Generator_RowDeletingName="TBDD_DOKUMENTARTRowDeleting" msprop:Generator_RowChangingName="TBDD_DOKUMENTARTRowChanging" msprop:Generator_RowEvHandlerName="TBDD_DOKUMENTARTRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_DOKUMENTARTRowDeleted" msprop:Generator_RowClassName="TBDD_DOKUMENTARTRow" msprop:Generator_UserTableName="TBDD_DOKUMENTART" msprop:Generator_RowEvArgName="TBDD_DOKUMENTARTRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -500,7 +500,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBDD_INDEX_MAN" msprop:Generator_TableClassName="TBDD_INDEX_MANDataTable" msprop:Generator_TableVarName="tableTBDD_INDEX_MAN" msprop:Generator_RowChangedName="TBDD_INDEX_MANRowChanged" msprop:Generator_TablePropName="TBDD_INDEX_MAN" msprop:Generator_RowDeletingName="TBDD_INDEX_MANRowDeleting" msprop:Generator_RowChangingName="TBDD_INDEX_MANRowChanging" msprop:Generator_RowEvHandlerName="TBDD_INDEX_MANRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_INDEX_MANRowDeleted" msprop:Generator_RowClassName="TBDD_INDEX_MANRow" msprop:Generator_UserTableName="TBDD_INDEX_MAN" msprop:Generator_RowEvArgName="TBDD_INDEX_MANRowChangeEvent">
|
<xs:element name="TBDD_INDEX_MAN" msprop:Generator_TableClassName="TBDD_INDEX_MANDataTable" msprop:Generator_TableVarName="tableTBDD_INDEX_MAN" msprop:Generator_TablePropName="TBDD_INDEX_MAN" msprop:Generator_RowDeletingName="TBDD_INDEX_MANRowDeleting" msprop:Generator_RowChangingName="TBDD_INDEX_MANRowChanging" msprop:Generator_RowEvHandlerName="TBDD_INDEX_MANRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_INDEX_MANRowDeleted" msprop:Generator_UserTableName="TBDD_INDEX_MAN" msprop:Generator_RowChangedName="TBDD_INDEX_MANRowChanged" msprop:Generator_RowEvArgName="TBDD_INDEX_MANRowChangeEvent" msprop:Generator_RowClassName="TBDD_INDEX_MANRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -582,7 +582,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBDD_INDEX_AUTOM" msprop:Generator_TableClassName="TBDD_INDEX_AUTOMDataTable" msprop:Generator_TableVarName="tableTBDD_INDEX_AUTOM" msprop:Generator_RowChangedName="TBDD_INDEX_AUTOMRowChanged" msprop:Generator_TablePropName="TBDD_INDEX_AUTOM" msprop:Generator_RowDeletingName="TBDD_INDEX_AUTOMRowDeleting" msprop:Generator_RowChangingName="TBDD_INDEX_AUTOMRowChanging" msprop:Generator_RowEvHandlerName="TBDD_INDEX_AUTOMRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_INDEX_AUTOMRowDeleted" msprop:Generator_RowClassName="TBDD_INDEX_AUTOMRow" msprop:Generator_UserTableName="TBDD_INDEX_AUTOM" msprop:Generator_RowEvArgName="TBDD_INDEX_AUTOMRowChangeEvent">
|
<xs:element name="TBDD_INDEX_AUTOM" msprop:Generator_TableClassName="TBDD_INDEX_AUTOMDataTable" msprop:Generator_TableVarName="tableTBDD_INDEX_AUTOM" msprop:Generator_TablePropName="TBDD_INDEX_AUTOM" msprop:Generator_RowDeletingName="TBDD_INDEX_AUTOMRowDeleting" msprop:Generator_RowChangingName="TBDD_INDEX_AUTOMRowChanging" msprop:Generator_RowEvHandlerName="TBDD_INDEX_AUTOMRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_INDEX_AUTOMRowDeleted" msprop:Generator_UserTableName="TBDD_INDEX_AUTOM" msprop:Generator_RowChangedName="TBDD_INDEX_AUTOMRowChanged" msprop:Generator_RowEvArgName="TBDD_INDEX_AUTOMRowChangeEvent" msprop:Generator_RowClassName="TBDD_INDEX_AUTOMRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -639,7 +639,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBGI_REGEX_DOCTYPE" msprop:Generator_TableClassName="TBGI_REGEX_DOCTYPEDataTable" msprop:Generator_TableVarName="tableTBGI_REGEX_DOCTYPE" msprop:Generator_RowChangedName="TBGI_REGEX_DOCTYPERowChanged" msprop:Generator_TablePropName="TBGI_REGEX_DOCTYPE" msprop:Generator_RowDeletingName="TBGI_REGEX_DOCTYPERowDeleting" msprop:Generator_RowChangingName="TBGI_REGEX_DOCTYPERowChanging" msprop:Generator_RowEvHandlerName="TBGI_REGEX_DOCTYPERowChangeEventHandler" msprop:Generator_RowDeletedName="TBGI_REGEX_DOCTYPERowDeleted" msprop:Generator_RowClassName="TBGI_REGEX_DOCTYPERow" msprop:Generator_UserTableName="TBGI_REGEX_DOCTYPE" msprop:Generator_RowEvArgName="TBGI_REGEX_DOCTYPERowChangeEvent">
|
<xs:element name="TBGI_REGEX_DOCTYPE" msprop:Generator_TableClassName="TBGI_REGEX_DOCTYPEDataTable" msprop:Generator_TableVarName="tableTBGI_REGEX_DOCTYPE" msprop:Generator_TablePropName="TBGI_REGEX_DOCTYPE" msprop:Generator_RowDeletingName="TBGI_REGEX_DOCTYPERowDeleting" msprop:Generator_RowChangingName="TBGI_REGEX_DOCTYPERowChanging" msprop:Generator_RowEvHandlerName="TBGI_REGEX_DOCTYPERowChangeEventHandler" msprop:Generator_RowDeletedName="TBGI_REGEX_DOCTYPERowDeleted" msprop:Generator_UserTableName="TBGI_REGEX_DOCTYPE" msprop:Generator_RowChangedName="TBGI_REGEX_DOCTYPERowChanged" msprop:Generator_RowEvArgName="TBGI_REGEX_DOCTYPERowChangeEvent" msprop:Generator_RowClassName="TBGI_REGEX_DOCTYPERow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -691,9 +691,9 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:annotation>
|
<xs:annotation>
|
||||||
<xs:appinfo>
|
<xs:appinfo>
|
||||||
<msdata:Relationship name="FK_TBDD_INDEX_MAN_DAID" msdata:parent="TBDD_DOKUMENTART" msdata:child="TBDD_INDEX_MAN" msdata:parentkey="GUID" msdata:childkey="DOK_ID" msprop:Generator_UserChildTable="TBDD_INDEX_MAN" msprop:Generator_ChildPropName="GetTBDD_INDEX_MANRows" msprop:Generator_UserRelationName="FK_TBDD_INDEX_MAN_DAID" msprop:Generator_RelationVarName="relationFK_TBDD_INDEX_MAN_DAID" msprop:Generator_UserParentTable="TBDD_DOKUMENTART" msprop:Generator_ParentPropName="TBDD_DOKUMENTARTRow" />
|
<msdata:Relationship name="FK_TBDD_INDEX_MAN_DAID" msdata:parent="TBDD_DOKUMENTART" msdata:child="TBDD_INDEX_MAN" msdata:parentkey="GUID" msdata:childkey="DOK_ID" msprop:Generator_UserChildTable="TBDD_INDEX_MAN" msprop:Generator_ChildPropName="GetTBDD_INDEX_MANRows" msprop:Generator_UserRelationName="FK_TBDD_INDEX_MAN_DAID" msprop:Generator_ParentPropName="TBDD_DOKUMENTARTRow" msprop:Generator_RelationVarName="relationFK_TBDD_INDEX_MAN_DAID" msprop:Generator_UserParentTable="TBDD_DOKUMENTART" />
|
||||||
<msdata:Relationship name="FK_TBDD_INDEX_AUTOM_DOCID" msdata:parent="TBDD_DOKUMENTART" msdata:child="TBDD_INDEX_AUTOM" msdata:parentkey="GUID" msdata:childkey="DOCTYPE_ID" msprop:Generator_UserChildTable="TBDD_INDEX_AUTOM" msprop:Generator_ChildPropName="GetTBDD_INDEX_AUTOMRows" msprop:Generator_UserRelationName="FK_TBDD_INDEX_AUTOM_DOCID" msprop:Generator_RelationVarName="relationFK_TBDD_INDEX_AUTOM_DOCID" msprop:Generator_UserParentTable="TBDD_DOKUMENTART" msprop:Generator_ParentPropName="TBDD_DOKUMENTARTRow" />
|
<msdata:Relationship name="FK_TBDD_INDEX_AUTOM_DOCID" msdata:parent="TBDD_DOKUMENTART" msdata:child="TBDD_INDEX_AUTOM" msdata:parentkey="GUID" msdata:childkey="DOCTYPE_ID" msprop:Generator_UserChildTable="TBDD_INDEX_AUTOM" msprop:Generator_ChildPropName="GetTBDD_INDEX_AUTOMRows" msprop:Generator_UserRelationName="FK_TBDD_INDEX_AUTOM_DOCID" msprop:Generator_ParentPropName="TBDD_DOKUMENTARTRow" msprop:Generator_RelationVarName="relationFK_TBDD_INDEX_AUTOM_DOCID" msprop:Generator_UserParentTable="TBDD_DOKUMENTART" />
|
||||||
<msdata:Relationship name="FK_TBGI_REGEX_DOCTYPE_DTID" msdata:parent="TBDD_DOKUMENTART" msdata:child="TBGI_REGEX_DOCTYPE" msdata:parentkey="GUID" msdata:childkey="DOCTYPE_ID" msprop:Generator_UserChildTable="TBGI_REGEX_DOCTYPE" msprop:Generator_ChildPropName="GetTBGI_REGEX_DOCTYPERows" msprop:Generator_UserRelationName="FK_TBGI_REGEX_DOCTYPE_DTID" msprop:Generator_RelationVarName="relationFK_TBGI_REGEX_DOCTYPE_DTID" msprop:Generator_UserParentTable="TBDD_DOKUMENTART" msprop:Generator_ParentPropName="TBDD_DOKUMENTARTRow" />
|
<msdata:Relationship name="FK_TBGI_REGEX_DOCTYPE_DTID" msdata:parent="TBDD_DOKUMENTART" msdata:child="TBGI_REGEX_DOCTYPE" msdata:parentkey="GUID" msdata:childkey="DOCTYPE_ID" msprop:Generator_UserChildTable="TBGI_REGEX_DOCTYPE" msprop:Generator_ChildPropName="GetTBGI_REGEX_DOCTYPERows" msprop:Generator_UserRelationName="FK_TBGI_REGEX_DOCTYPE_DTID" msprop:Generator_ParentPropName="TBDD_DOKUMENTARTRow" msprop:Generator_RelationVarName="relationFK_TBGI_REGEX_DOCTYPE_DTID" msprop:Generator_UserParentTable="TBDD_DOKUMENTART" />
|
||||||
</xs:appinfo>
|
</xs:appinfo>
|
||||||
</xs:annotation>
|
</xs:annotation>
|
||||||
</xs:schema>
|
</xs:schema>
|
||||||
@@ -4,15 +4,16 @@
|
|||||||
Changes to this file may cause incorrect behavior and will be lost if
|
Changes to this file may cause incorrect behavior and will be lost if
|
||||||
the code is regenerated.
|
the code is regenerated.
|
||||||
</autogenerated>-->
|
</autogenerated>-->
|
||||||
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="-10" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="-47" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||||
<Shapes>
|
<Shapes>
|
||||||
<Shape ID="DesignTable:TBDD_DOKUMENTART" ZOrder="5" X="262" Y="65" Height="324" Width="278" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
<Shape ID="DesignTable:TBDD_DOKUMENTART" ZOrder="7" X="262" Y="65" Height="324" Width="278" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||||
<Shape ID="DesignTable:TBDD_INDEX_MAN" ZOrder="4" X="618" Y="255" Height="305" Width="256" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
<Shape ID="DesignTable:TBDD_INDEX_MAN" ZOrder="6" X="618" Y="255" Height="305" Width="256" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||||
<Shape ID="DesignTable:TBDD_INDEX_AUTOM" ZOrder="2" X="1037" Y="199" Height="305" Width="272" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
<Shape ID="DesignTable:TBDD_INDEX_AUTOM" ZOrder="4" X="1037" Y="199" Height="305" Width="272" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||||
<Shape ID="DesignTable:TBTEMP_INDEXRESULTS" ZOrder="6" X="0" Y="0" Height="86" Width="208" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="86" />
|
<Shape ID="DesignTable:TBGI_REGEX_DOCTYPE" ZOrder="2" X="55" Y="500" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
||||||
|
<Shape ID="DesignTable:TBTEMP_INDEXRESULTS" ZOrder="8" X="3" Y="202" Height="86" Width="208" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="82" />
|
||||||
</Shapes>
|
</Shapes>
|
||||||
<Connectors>
|
<Connectors>
|
||||||
<Connector ID="DesignRelation:FK_TBDD_INDEX_MAN_DAID" ZOrder="3" LineWidth="11">
|
<Connector ID="DesignRelation:FK_TBDD_INDEX_MAN_DAID" ZOrder="5" LineWidth="11">
|
||||||
<RoutePoints>
|
<RoutePoints>
|
||||||
<Point>
|
<Point>
|
||||||
<X>540</X>
|
<X>540</X>
|
||||||
@@ -24,7 +25,7 @@
|
|||||||
</Point>
|
</Point>
|
||||||
</RoutePoints>
|
</RoutePoints>
|
||||||
</Connector>
|
</Connector>
|
||||||
<Connector ID="DesignRelation:FK_TBDD_INDEX_AUTOM_DOCID" ZOrder="1" LineWidth="11">
|
<Connector ID="DesignRelation:FK_TBDD_INDEX_AUTOM_DOCID" ZOrder="3" LineWidth="11">
|
||||||
<RoutePoints>
|
<RoutePoints>
|
||||||
<Point>
|
<Point>
|
||||||
<X>540</X>
|
<X>540</X>
|
||||||
@@ -36,5 +37,21 @@
|
|||||||
</Point>
|
</Point>
|
||||||
</RoutePoints>
|
</RoutePoints>
|
||||||
</Connector>
|
</Connector>
|
||||||
|
<Connector ID="DesignRelation:FK_TBGI_REGEX_DOCTYPE_DTID" ZOrder="1" LineWidth="11">
|
||||||
|
<RoutePoints>
|
||||||
|
<Point>
|
||||||
|
<X>279</X>
|
||||||
|
<Y>389</Y>
|
||||||
|
</Point>
|
||||||
|
<Point>
|
||||||
|
<X>279</X>
|
||||||
|
<Y>517</Y>
|
||||||
|
</Point>
|
||||||
|
<Point>
|
||||||
|
<X>213</X>
|
||||||
|
<Y>517</Y>
|
||||||
|
</Point>
|
||||||
|
</RoutePoints>
|
||||||
|
</Connector>
|
||||||
</Connectors>
|
</Connectors>
|
||||||
</DiagramLayout>
|
</DiagramLayout>
|
||||||
@@ -8,8 +8,6 @@ Public Class SearchRunner
|
|||||||
|
|
||||||
Private Const SEARCH_FACT_DATE_DEFAULT As String = "ADDED_WHEN"
|
Private Const SEARCH_FACT_DATE_DEFAULT As String = "ADDED_WHEN"
|
||||||
|
|
||||||
Private Environment As Environment
|
|
||||||
|
|
||||||
Private Const CREATED_TOMORROW As String = "TOMORROW"
|
Private Const CREATED_TOMORROW As String = "TOMORROW"
|
||||||
Private Const CREATED_TODAY As String = "ECM_CREATED_TODAY"
|
Private Const CREATED_TODAY As String = "ECM_CREATED_TODAY"
|
||||||
Private Const CREATED_YESTERDAY As String = "ECM_CREATED_YESTERDAY"
|
Private Const CREATED_YESTERDAY As String = "ECM_CREATED_YESTERDAY"
|
||||||
@@ -49,18 +47,30 @@ Public Class SearchRunner
|
|||||||
Public Property BaseSearchSQL As String
|
Public Property BaseSearchSQL As String
|
||||||
Public Property ExplicitDate As Boolean = False
|
Public Property ExplicitDate As Boolean = False
|
||||||
|
|
||||||
Public Sub New(pLogConfig As LogConfig, pEnvironment As Environment)
|
Private Environment As Environment
|
||||||
|
Private SearchTitle As String
|
||||||
|
|
||||||
|
Public Sub New(pLogConfig As LogConfig, pEnvironment As Environment, pSearchTitle As String)
|
||||||
MyBase.New(pLogConfig)
|
MyBase.New(pLogConfig)
|
||||||
Environment = pEnvironment
|
Environment = pEnvironment
|
||||||
|
SearchTitle = pSearchTitle
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Public Async Function Run(pSearchTerm As String) As Threading.Tasks.Task(Of SearchResult)
|
||||||
|
Return Await Run(pSearchTerm, Nothing, Nothing)
|
||||||
|
End Function
|
||||||
|
|
||||||
Public Async Function Run(pSearchTerm As String, pDateFrom As Date, pDateTo As Date) As Threading.Tasks.Task(Of SearchResult)
|
Public Async Function Run(pSearchTerm As String, pDateFrom As Date, pDateTo As Date) As Threading.Tasks.Task(Of SearchResult)
|
||||||
|
If pDateFrom.Equals(Date.MinValue) = False Then
|
||||||
|
ExplicitDate = True
|
||||||
|
End If
|
||||||
|
|
||||||
Dim oSearchTerm = pSearchTerm
|
Dim oSearchTerm = pSearchTerm
|
||||||
Dim oParams = New DocumentResultList.Params() With {
|
Dim oParams = New DocumentResultList.Params() With {
|
||||||
.WindowGuid = "FlowSearch",
|
.WindowGuid = SearchTitle,
|
||||||
.WindowTitle = GetResultWindowString(oSearchTerm),
|
.WindowTitle = GetResultWindowString(oSearchTerm),
|
||||||
.OperationModeOverride = Modules.ZooFlow.Constants.OperationMode.ZooFlow,
|
.OperationModeOverride = Modules.ZooFlow.Constants.OperationMode.ZooFlow,
|
||||||
.ProfileGuid = 354522,
|
.ProfileGuid = 35452,
|
||||||
.ColumnNames = New DocumentResultList.ColumnNames With {
|
.ColumnNames = New DocumentResultList.ColumnNames With {
|
||||||
.ObjectIdColumn = "DocID"
|
.ObjectIdColumn = "DocID"
|
||||||
},
|
},
|
||||||
@@ -88,9 +98,14 @@ Public Class SearchRunner
|
|||||||
Dim oDTDocResult = Await My.Database.GetDatatableIDBAsync(BaseSearchSQL)
|
Dim oDTDocResult = Await My.Database.GetDatatableIDBAsync(BaseSearchSQL)
|
||||||
If oDTDocResult.Rows.Count > 0 Then
|
If oDTDocResult.Rows.Count > 0 Then
|
||||||
oParams.Results.Add(New DocumentResultList.DocumentResult() With {
|
oParams.Results.Add(New DocumentResultList.DocumentResult() With {
|
||||||
.Title = "FlowSearchXYZ",
|
.Title = SearchTitle,
|
||||||
.Datatable = oDTDocResult
|
.Datatable = oDTDocResult
|
||||||
})
|
})
|
||||||
|
|
||||||
|
If oDTDocResult.Rows.Count = 1 Then
|
||||||
|
oParams.ShowFileList = False
|
||||||
|
End If
|
||||||
|
|
||||||
Dim oForm As New frmDocumentResultList(My.LogConfig, Environment, oParams)
|
Dim oForm As New frmDocumentResultList(My.LogConfig, Environment, oParams)
|
||||||
|
|
||||||
' TODO: Implement, not needed right now
|
' TODO: Implement, not needed right now
|
||||||
|
|||||||
@@ -117,7 +117,7 @@ Public Class frmFlowSearch1
|
|||||||
|
|
||||||
Private Sub frmFlowSearch1_Load(sender As Object, e As EventArgs) Handles Me.Load
|
Private Sub frmFlowSearch1_Load(sender As Object, e As EventArgs) Handles Me.Load
|
||||||
Logger = My.LogConfig.GetLogger()
|
Logger = My.LogConfig.GetLogger()
|
||||||
SearchRunner = New SearchRunner(My.LogConfig, My.Application.GetEnvironment)
|
SearchRunner = New SearchRunner(My.LogConfig, My.Application.GetEnvironment, "FlowSearch")
|
||||||
|
|
||||||
Try
|
Try
|
||||||
If My.Application.User.Language = "de-DE" Then
|
If My.Application.User.Language = "de-DE" Then
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ Public Class frmFlowSearch2
|
|||||||
End If
|
End If
|
||||||
Next
|
Next
|
||||||
|
|
||||||
SearchRunner = New SearchRunner(My.LogConfig, My.Application.GetEnvironment)
|
SearchRunner = New SearchRunner(My.LogConfig, My.Application.GetEnvironment, "FlowSearch")
|
||||||
SearchRunner.BaseSearchSQL = BaseSearchSQL
|
SearchRunner.BaseSearchSQL = BaseSearchSQL
|
||||||
|
|
||||||
Dim osql = $"EXEC PRIDB_SEARCH_AUTOSUGGEST '{My.Application.User.Language}',{My.Application.User.UserId}"
|
Dim osql = $"EXEC PRIDB_SEARCH_AUTOSUGGEST '{My.Application.User.Language}',{My.Application.User.UserId}"
|
||||||
|
|||||||
@@ -670,6 +670,10 @@
|
|||||||
<Project>{40384b94-1f94-4249-9a5a-d02e0b346738}</Project>
|
<Project>{40384b94-1f94-4249-9a5a-d02e0b346738}</Project>
|
||||||
<Name>GlobalIndexer</Name>
|
<Name>GlobalIndexer</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
|
<ProjectReference Include="..\MessageBoxEx\MessageBoxEx.vbproj">
|
||||||
|
<Project>{ef29f400-be45-4283-9d18-ca7acd9accc9}</Project>
|
||||||
|
<Name>MessageBoxEx</Name>
|
||||||
|
</ProjectReference>
|
||||||
<ProjectReference Include="..\Modules.Base\Base\Base.vbproj">
|
<ProjectReference Include="..\Modules.Base\Base\Base.vbproj">
|
||||||
<Project>{6ea0c51f-c2b1-4462-8198-3de0b32b74f8}</Project>
|
<Project>{6ea0c51f-c2b1-4462-8198-3de0b32b74f8}</Project>
|
||||||
<Name>Base</Name>
|
<Name>Base</Name>
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ Imports DigitalData.Modules.Language
|
|||||||
Imports DevExpress.LookAndFeel
|
Imports DevExpress.LookAndFeel
|
||||||
Imports System.Threading.Tasks
|
Imports System.Threading.Tasks
|
||||||
Imports System.Threading
|
Imports System.Threading
|
||||||
|
Imports DigitalData.Controls.MessageBoxEx
|
||||||
|
|
||||||
Public Class frmFlowForm
|
Public Class frmFlowForm
|
||||||
#Region "Sidebar DllImport"
|
#Region "Sidebar DllImport"
|
||||||
@@ -488,8 +489,11 @@ Public Class frmFlowForm
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Sub ExitZooflow()
|
Sub ExitZooflow()
|
||||||
Dim oResult As DialogResult = MessageBox.Show("Are you sure you want to close ZooFlow?", "Exit Zooflow", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
|
Dim oMsgBox As New MsgBoxEx("Are you sure you want to close ZooFlow?", "Exit Zooflow", MessageBoxIcon.Question)
|
||||||
If oResult = DialogResult.Yes Then
|
oMsgBox.SetButtons("Yes", "No")
|
||||||
|
oMsgBox.ShowDialog()
|
||||||
|
|
||||||
|
If oMsgBox.Result = MsgBoxEx.DialogBoxResult.Button1 Then
|
||||||
Close()
|
Close()
|
||||||
Else
|
Else
|
||||||
ESCHitCount = 0
|
ESCHitCount = 0
|
||||||
@@ -1153,6 +1157,12 @@ Public Class frmFlowForm
|
|||||||
.Title = GetResultWindowString(pSearchText),
|
.Title = GetResultWindowString(pSearchText),
|
||||||
.Datatable = oDTDocResult
|
.Datatable = oDTDocResult
|
||||||
})
|
})
|
||||||
|
|
||||||
|
' disable file list if we have only one document
|
||||||
|
If oDTDocResult.Rows.Count = 1 Then
|
||||||
|
oParams.ShowFileList = False
|
||||||
|
End If
|
||||||
|
|
||||||
Dim oForm As New frmDocumentResultList(My.LogConfig, Environment, oParams)
|
Dim oForm As New frmDocumentResultList(My.LogConfig, Environment, oParams)
|
||||||
oForm.Show()
|
oForm.Show()
|
||||||
oForm.BringToFront()
|
oForm.BringToFront()
|
||||||
@@ -1272,5 +1282,9 @@ Public Class frmFlowForm
|
|||||||
Dim oForm = New frmFlowSearch2()
|
Dim oForm = New frmFlowSearch2()
|
||||||
oForm.Show()
|
oForm.Show()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub PictureEditQuicksearch1_EditValueChanged(sender As Object, e As EventArgs) Handles PictureEditQuicksearch1.EditValueChanged
|
||||||
|
|
||||||
|
End Sub
|
||||||
End Class
|
End Class
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ Public Class frmServiceConfig
|
|||||||
txtServicePort.Text = oAddress.Item2
|
txtServicePort.Text = oAddress.Item2
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If My.Application.Service.IsActive Then
|
If My.Application.Service.Client.IsOnline Then
|
||||||
txtStatus.Text = STATUS_CONNECTED
|
txtStatus.Text = STATUS_CONNECTED
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|||||||
2
MessageBoxEx/MsgBoxEx.Designer.vb
generated
2
MessageBoxEx/MsgBoxEx.Designer.vb
generated
@@ -75,7 +75,7 @@ Partial Class MsgBoxEx
|
|||||||
Me.messageLbl.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
Me.messageLbl.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.messageLbl.Location = New System.Drawing.Point(58, 10)
|
Me.messageLbl.Location = New System.Drawing.Point(58, 10)
|
||||||
Me.messageLbl.Name = "messageLbl"
|
Me.messageLbl.Name = "messageLbl"
|
||||||
Me.messageLbl.Size = New System.Drawing.Size(415, 75)
|
Me.messageLbl.Size = New System.Drawing.Size(415, 63)
|
||||||
Me.messageLbl.TabIndex = 19
|
Me.messageLbl.TabIndex = 19
|
||||||
Me.messageLbl.Text = "[Message]"
|
Me.messageLbl.Text = "[Message]"
|
||||||
'
|
'
|
||||||
|
|||||||
@@ -1,21 +1,22 @@
|
|||||||
Public Class MsgBoxEx
|
Public Class MsgBoxEx
|
||||||
Public Sub New(ByVal message As String, ByVal title As String)
|
Public Sub New(message As String, title As String)
|
||||||
Me.New(message, title, MessageBoxIcon.None)
|
Me.New(message, title, MessageBoxIcon.None)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub New(ByVal message As String, ByVal title As String, ByVal icon As MessageBoxIcon)
|
Public Sub New(message As String, title As String, icon As MessageBoxIcon)
|
||||||
Me.New(message, title, getMessageBoxIcon(icon))
|
Me.New(message, title, getMessageBoxIcon(icon))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub New(ByVal message As String, ByVal title As String, ByVal icon As Icon)
|
Public Sub New(message As String, title As String, icon As Icon)
|
||||||
InitializeComponent()
|
InitializeComponent()
|
||||||
Me.messageLbl.Text = message
|
messageLbl.Text = message
|
||||||
Me.Text = title
|
Text = title
|
||||||
Me.m_sysIcon = icon
|
m_sysIcon = icon
|
||||||
If Me.m_sysIcon Is Nothing Then Me.messageLbl.Location = New System.Drawing.Point(FORM_X_MARGIN, FORM_Y_MARGIN)
|
If m_sysIcon Is Nothing Then messageLbl.Location = New System.Drawing.Point(FORM_X_MARGIN, FORM_Y_MARGIN)
|
||||||
|
SetButtons("OK")
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Shared Function getMessageBoxIcon(ByVal icon As MessageBoxIcon) As Icon
|
Private Shared Function getMessageBoxIcon(icon As MessageBoxIcon) As Icon
|
||||||
Dim oIcon As Icon = Nothing
|
Dim oIcon As Icon = Nothing
|
||||||
|
|
||||||
Select Case icon
|
Select Case icon
|
||||||
@@ -39,7 +40,7 @@
|
|||||||
Private m_minWidth As Integer
|
Private m_minWidth As Integer
|
||||||
Private m_minHeight As Integer
|
Private m_minHeight As Integer
|
||||||
|
|
||||||
Public Sub SetMinSize(ByVal width As Integer, ByVal height As Integer)
|
Public Sub SetMinSize(width As Integer, height As Integer)
|
||||||
m_minWidth = width
|
m_minWidth = width
|
||||||
m_minHeight = height
|
m_minHeight = height
|
||||||
End Sub
|
End Sub
|
||||||
@@ -51,18 +52,18 @@
|
|||||||
drs(i) = DialogResult.None
|
drs(i) = DialogResult.None
|
||||||
Next
|
Next
|
||||||
|
|
||||||
Me.SetButtons(names, drs)
|
SetButtons(names, drs)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub SetButtons(ByVal names As String(), ByVal results As DialogResult())
|
Public Sub SetButtons(names As String(), results As DialogResult())
|
||||||
Me.SetButtons(names, results, 1)
|
SetButtons(names, results, 1)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub SetButtons(ByVal names As String(), ByVal results As DialogResult(), ByVal def As Integer)
|
Public Sub SetButtons(names As String(), results As DialogResult(), def As Integer)
|
||||||
If names Is Nothing Then Throw New ArgumentNullException("btnText", "Button Text is null")
|
If names Is Nothing Then Throw New ArgumentNullException("btnText", "Button Text is null")
|
||||||
Dim count As Integer = names.Length
|
Dim count As Integer = names.Length
|
||||||
If count < 1 OrElse count > 3 Then Throw New ArgumentException("Invalid number of buttons. Must be between 1 and 3.")
|
If count < 1 OrElse count > 3 Then Throw New ArgumentException("Invalid number of buttons. Must be between 1 and 3.")
|
||||||
m_minButtonRowWidth += setButtonParams(btn1, names(0), If(def = 1, 1, 2), results(0))
|
m_minButtonRowWidth = setButtonParams(btn1, names(0), If(def = 1, 1, 2), results(0))
|
||||||
|
|
||||||
If count > 1 Then
|
If count > 1 Then
|
||||||
m_minButtonRowWidth += setButtonParams(btn2, names(1), If(def = 2, 1, 3), results(1)) + BUTTON_SPACE
|
m_minButtonRowWidth += setButtonParams(btn2, names(1), If(def = 2, 1, 3), results(1)) + BUTTON_SPACE
|
||||||
@@ -75,7 +76,7 @@
|
|||||||
|
|
||||||
Private m_minButtonRowWidth As Integer
|
Private m_minButtonRowWidth As Integer
|
||||||
|
|
||||||
Private Shared Function setButtonParams(ByVal btn As Button, ByVal text As String, ByVal tab As Integer, ByVal dr As DialogResult) As Integer
|
Private Shared Function setButtonParams(btn As Button, text As String, tab As Integer, dr As DialogResult) As Integer
|
||||||
btn.Text = text
|
btn.Text = text
|
||||||
btn.Visible = True
|
btn.Visible = True
|
||||||
btn.DialogResult = dr
|
btn.DialogResult = dr
|
||||||
@@ -83,22 +84,22 @@
|
|||||||
Return btn.Size.Width
|
Return btn.Size.Width
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Sub SetCheckbox(ByVal text As String)
|
Public Sub SetCheckbox(text As String)
|
||||||
Me.SetCheckbox(text, False)
|
SetCheckbox(text, False)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub SetCheckbox(ByVal text As String, ByVal chcked As Boolean)
|
Public Sub SetCheckbox(text As String, chcked As Boolean)
|
||||||
Me.chkBx.Visible = True
|
chkBx.Visible = True
|
||||||
Me.chkBx.Text = text
|
chkBx.Text = text
|
||||||
Me.chkBx.Checked = chcked
|
chkBx.Checked = chcked
|
||||||
Me.m_minButtonRowWidth += Me.chkBx.Size.Width + CHECKBOX_SPACE
|
m_minButtonRowWidth += chkBx.Size.Width + CHECKBOX_SPACE
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub DialogBox_Load(ByVal sender As Object, ByVal e As EventArgs)
|
Private Sub DialogBox_Load(sender As Object, e As EventArgs)
|
||||||
If Not btn1.Visible Then Me.SetButtons(New String() {"OK"}, New DialogResult() {DialogResult.OK})
|
If Not btn1.Visible Then SetButtons(New String() {"OK"}, New DialogResult() {DialogResult.OK})
|
||||||
m_minButtonRowWidth += 2 * FORM_X_MARGIN
|
m_minButtonRowWidth += 2 * FORM_X_MARGIN
|
||||||
Me.setDialogSize()
|
setDialogSize()
|
||||||
Me.setButtonRowLocations()
|
setButtonRowLocations()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Const FORM_Y_MARGIN As Integer = 10
|
Const FORM_Y_MARGIN As Integer = 10
|
||||||
@@ -108,19 +109,19 @@
|
|||||||
Const TEXT_Y_MARGIN As Integer = 30
|
Const TEXT_Y_MARGIN As Integer = 30
|
||||||
|
|
||||||
Private Sub setDialogSize()
|
Private Sub setDialogSize()
|
||||||
Dim requiredWidth As Integer = Me.messageLbl.Location.X + Me.messageLbl.Size.Width + FORM_X_MARGIN
|
Dim requiredWidth As Integer = messageLbl.Location.X + messageLbl.Size.Width + FORM_X_MARGIN
|
||||||
requiredWidth = If(requiredWidth > m_minButtonRowWidth, requiredWidth, m_minButtonRowWidth)
|
requiredWidth = If(requiredWidth > m_minButtonRowWidth, requiredWidth, m_minButtonRowWidth)
|
||||||
Dim requiredHeight As Integer = Me.messageLbl.Location.Y + Me.messageLbl.Size.Height - Me.btn2.Location.Y + Me.ClientSize.Height + TEXT_Y_MARGIN
|
Dim requiredHeight As Integer = messageLbl.Location.Y + messageLbl.Size.Height - btn2.Location.Y + ClientSize.Height + TEXT_Y_MARGIN
|
||||||
Dim minSetWidth As Integer = If(Me.ClientSize.Width > Me.m_minWidth, Me.ClientSize.Width, Me.m_minWidth)
|
Dim minSetWidth As Integer = If(ClientSize.Width > m_minWidth, ClientSize.Width, m_minWidth)
|
||||||
Dim minSetHeight As Integer = If(Me.ClientSize.Height > Me.m_minHeight, Me.ClientSize.Height, Me.m_minHeight)
|
Dim minSetHeight As Integer = If(ClientSize.Height > m_minHeight, ClientSize.Height, m_minHeight)
|
||||||
Dim s As Size = New Size()
|
Dim s As Size = New Size()
|
||||||
s.Width = If(requiredWidth > minSetWidth, requiredWidth, minSetWidth)
|
s.Width = If(requiredWidth > minSetWidth, requiredWidth, minSetWidth)
|
||||||
s.Height = If(requiredHeight > minSetHeight, requiredHeight, minSetHeight)
|
s.Height = If(requiredHeight > minSetHeight, requiredHeight, minSetHeight)
|
||||||
Me.ClientSize = s
|
ClientSize = s
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub setButtonRowLocations()
|
Private Sub setButtonRowLocations()
|
||||||
Dim formWidth As Integer = Me.ClientRectangle.Width
|
Dim formWidth As Integer = ClientRectangle.Width
|
||||||
Dim x As Integer = formWidth - FORM_X_MARGIN
|
Dim x As Integer = formWidth - FORM_X_MARGIN
|
||||||
Dim y As Integer = btn1.Location.Y
|
Dim y As Integer = btn1.Location.Y
|
||||||
|
|
||||||
@@ -138,12 +139,12 @@
|
|||||||
|
|
||||||
x -= btn1.Size.Width
|
x -= btn1.Size.Width
|
||||||
btn1.Location = New Point(x, y)
|
btn1.Location = New Point(x, y)
|
||||||
If Me.chkBx.Visible Then Me.chkBx.Location = New Point(FORM_X_MARGIN, Me.chkBx.Location.Y)
|
If chkBx.Visible Then chkBx.Location = New Point(FORM_X_MARGIN, chkBx.Location.Y)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private m_sysIcon As Icon
|
Private m_sysIcon As Icon
|
||||||
|
|
||||||
Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs)
|
Protected Overrides Sub OnPaint(e As PaintEventArgs)
|
||||||
If m_sysIcon IsNot Nothing Then
|
If m_sysIcon IsNot Nothing Then
|
||||||
Dim g As Graphics = e.Graphics
|
Dim g As Graphics = e.Graphics
|
||||||
g.DrawIconUnstretched(m_sysIcon, New Rectangle(FORM_X_MARGIN, FORM_Y_MARGIN, m_sysIcon.Width, m_sysIcon.Height))
|
g.DrawIconUnstretched(m_sysIcon, New Rectangle(FORM_X_MARGIN, FORM_Y_MARGIN, m_sysIcon.Width, m_sysIcon.Height))
|
||||||
@@ -154,7 +155,7 @@
|
|||||||
|
|
||||||
Public ReadOnly Property CheckboxChecked As Boolean
|
Public ReadOnly Property CheckboxChecked As Boolean
|
||||||
Get
|
Get
|
||||||
Return Me.chkBx.Checked
|
Return chkBx.Checked
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
@@ -166,7 +167,7 @@
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
Private Sub btn_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btn1.Click, btn2.Click, btn3.Click
|
Private Sub btn_Click(sender As Object, e As EventArgs) Handles btn1.Click, btn2.Click, btn3.Click
|
||||||
If sender.Equals(btn1) Then
|
If sender.Equals(btn1) Then
|
||||||
m_result = DialogBoxResult.Button1
|
m_result = DialogBoxResult.Button1
|
||||||
ElseIf sender.Equals(btn2) Then
|
ElseIf sender.Equals(btn2) Then
|
||||||
|
|||||||
@@ -15,22 +15,24 @@ Public Class Client
|
|||||||
' Helper Classes
|
' Helper Classes
|
||||||
Private ReadOnly LogConfig As LogConfig
|
Private ReadOnly LogConfig As LogConfig
|
||||||
Private ReadOnly Logger As Logger
|
Private ReadOnly Logger As Logger
|
||||||
Private ReadOnly FileEx As Filesystem.File
|
Private ReadOnly ChannelManager As Channel
|
||||||
|
|
||||||
' Runtime Variables
|
' Runtime Variables
|
||||||
Private ReadOnly ServerAddress As String
|
Private _ServerAddress As ServerAddressStruct
|
||||||
Private ReadOnly ServerPort As Integer
|
|
||||||
Private _ClientConfig As GlobalStateClientConfiguration
|
Private _ClientConfig As GlobalStateClientConfiguration
|
||||||
|
Private _CachedTables As New List(Of String)
|
||||||
' Channel
|
Private _IsOnline As Boolean
|
||||||
Private ReadOnly ChannelFactory As ChannelFactory(Of IEDMIServiceChannel)
|
Private _Channel As IEDMIServiceChannel
|
||||||
Private Channel As IEDMIServiceChannel
|
|
||||||
|
|
||||||
' Update Timer
|
' Update Timer
|
||||||
Private WithEvents UpdateTimer As New Timers.Timer
|
Private WithEvents UpdateTimer As New Timers.Timer
|
||||||
|
|
||||||
' Public Variables
|
' Public Variables
|
||||||
Public CachedTables As New List(Of String)
|
Public ReadOnly Property CachedTables
|
||||||
|
Get
|
||||||
|
Return _CachedTables
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
Public ReadOnly Property ClientConfig As GlobalStateClientConfiguration
|
Public ReadOnly Property ClientConfig As GlobalStateClientConfiguration
|
||||||
Get
|
Get
|
||||||
@@ -42,24 +44,27 @@ Public Class Client
|
|||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
Public ReadOnly Property IsOnline As Boolean
|
||||||
|
Get
|
||||||
|
Return _IsOnline
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Public ReadOnly Property ServerAddress As String
|
||||||
|
Get
|
||||||
|
Return $"{_ServerAddress.Host}:{_ServerAddress.Port}"
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
''' <summary>
|
''' <summary>
|
||||||
''' Parse a IPAddress:Port String into its parts
|
''' Parse a IPAddress:Port String into its parts
|
||||||
''' </summary>
|
''' </summary>
|
||||||
''' <param name="AddressWithOptionalPort"></param>
|
''' <param name="AddressWithOptionalPort">A Server Address, for example: 192.168.1.50, 192.168.1.50:9000, 192.168.1.50;9000</param>
|
||||||
Public Shared Function ParseServiceAddress(AddressWithOptionalPort As String) As Tuple(Of String, Integer)
|
Public Shared Function ParseServiceAddress(AddressWithOptionalPort As String) As Tuple(Of String, Integer)
|
||||||
Dim oSplit() As String = AddressWithOptionalPort.Split(":"c)
|
Dim oConnection As New Connection()
|
||||||
Dim oAppServerAddress As String = oSplit(0)
|
Dim oAddress As ServerAddressStruct = oConnection.ParseServiceAddress(AddressWithOptionalPort)
|
||||||
Dim oAppServerPort As Integer
|
|
||||||
|
|
||||||
If oSplit.Length = 2 Then
|
Return New Tuple(Of String, Integer)(oAddress.Host, oAddress.Port)
|
||||||
If Integer.TryParse(oSplit(1), oAppServerPort) Then
|
|
||||||
oAppServerPort = DEFAULT_SERVICE_PORT
|
|
||||||
End If
|
|
||||||
Else
|
|
||||||
oAppServerPort = DEFAULT_SERVICE_PORT
|
|
||||||
End If
|
|
||||||
|
|
||||||
Return New Tuple(Of String, Integer)(oAppServerAddress, oAppServerPort)
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
''' <summary>
|
''' <summary>
|
||||||
@@ -70,25 +75,18 @@ Public Class Client
|
|||||||
Public Sub New(pLogConfig As LogConfig, pServiceAdress As String)
|
Public Sub New(pLogConfig As LogConfig, pServiceAdress As String)
|
||||||
LogConfig = pLogConfig
|
LogConfig = pLogConfig
|
||||||
Logger = pLogConfig.GetLogger()
|
Logger = pLogConfig.GetLogger()
|
||||||
FileEx = New Filesystem.File(pLogConfig)
|
|
||||||
|
|
||||||
Dim oServiceAddress As String = pServiceAdress
|
|
||||||
Dim oAddressArray() As String
|
|
||||||
|
|
||||||
If oServiceAddress.Contains(";") Then
|
|
||||||
oAddressArray = oServiceAddress.Split(";")
|
|
||||||
Else
|
|
||||||
oAddressArray = oServiceAddress.Split(":")
|
|
||||||
End If
|
|
||||||
|
|
||||||
UpdateTimer.Interval = 60 * 1000 * UPDATE_INTERVAL_IN_MINUTES
|
UpdateTimer.Interval = 60 * 1000 * UPDATE_INTERVAL_IN_MINUTES
|
||||||
UpdateTimer.Start()
|
UpdateTimer.Start()
|
||||||
|
|
||||||
Try
|
Try
|
||||||
ServerAddress = oAddressArray(0)
|
Dim oConnection = New Connection()
|
||||||
ServerPort = oAddressArray(1)
|
_ServerAddress = oConnection.ParseServiceAddress(pServiceAdress)
|
||||||
Logger.Debug("Connecting to Service at: [{0}]", ServerAddress)
|
ChannelManager = New Channel(pLogConfig, _ServerAddress)
|
||||||
ChannelFactory = GetChannelFactory(ServerAddress, ServerPort)
|
AddHandler ChannelManager.Reconnect, AddressOf Reconnect
|
||||||
|
|
||||||
|
Logger.Debug("Ready for connection to Service at: [{0}:{1}]", _ServerAddress.Host, _ServerAddress.Port)
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
Logger.Error(ex)
|
Logger.Error(ex)
|
||||||
End Try
|
End Try
|
||||||
@@ -97,60 +95,60 @@ Public Class Client
|
|||||||
''' <summary>
|
''' <summary>
|
||||||
''' Creates a new EDMI Client object
|
''' Creates a new EDMI Client object
|
||||||
''' </summary>
|
''' </summary>
|
||||||
''' <param name="LogConfig">LogConfig object</param>
|
''' <param name="pLogConfig">LogConfig object</param>
|
||||||
''' <param name="IPAddress">The IP address to connect to</param>
|
''' <param name="pIPAddress">The IP address to connect to</param>
|
||||||
''' <param name="PortNumber">The Port number to use for the connection</param>
|
''' <param name="pPortNumber">The Port number to use for the connection</param>
|
||||||
Public Sub New(LogConfig As LogConfig, IPAddress As String, PortNumber As Integer)
|
Public Sub New(pLogConfig As LogConfig, pIPAddress As String, pPortNumber As Integer)
|
||||||
Me.LogConfig = LogConfig
|
LogConfig = pLogConfig
|
||||||
Logger = LogConfig.GetLogger()
|
Logger = pLogConfig.GetLogger()
|
||||||
FileEx = New Filesystem.File(LogConfig)
|
|
||||||
|
|
||||||
UpdateTimer.Interval = 60 * 1000 * UPDATE_INTERVAL_IN_MINUTES
|
UpdateTimer.Interval = 60 * 1000 * UPDATE_INTERVAL_IN_MINUTES
|
||||||
UpdateTimer.Start()
|
UpdateTimer.Start()
|
||||||
|
|
||||||
Try
|
Try
|
||||||
Logger.Debug("Connecting to Service at: [{0}]", IPAddress)
|
Dim oConnection = New Connection()
|
||||||
ChannelFactory = GetChannelFactory(IPAddress, PortNumber)
|
_ServerAddress = oConnection.ParseServiceAddress(pIPAddress, pPortNumber)
|
||||||
|
ChannelManager = New Channel(pLogConfig, _ServerAddress)
|
||||||
|
AddHandler ChannelManager.Reconnect, AddressOf Reconnect
|
||||||
|
|
||||||
|
Logger.Debug("Ready for connection to Service at: [{0}:{1}]", _ServerAddress.Host, _ServerAddress.Port)
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
Logger.Error(ex)
|
Logger.Error(ex)
|
||||||
End Try
|
End Try
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Function GetChannelFactory(pIPAddress As String, pPortNumber As Integer) As ChannelFactory(Of IEDMIServiceChannel)
|
|
||||||
Dim oBinding = API.Channel.GetBinding()
|
|
||||||
Dim oAddress = New EndpointAddress($"net.tcp://{pIPAddress}:{pPortNumber}/DigitalData/Services/Main")
|
|
||||||
Dim oFactory = New ChannelFactory(Of IEDMIServiceChannel)(oBinding, oAddress)
|
|
||||||
Return oFactory
|
|
||||||
End Function
|
|
||||||
|
|
||||||
''' <summary>
|
''' <summary>
|
||||||
''' Connect to the service
|
''' Connect to the service
|
||||||
''' </summary>
|
''' </summary>
|
||||||
''' <returns>True if connection was successful, false otherwise</returns>
|
''' <returns>True if connection was successful, false otherwise</returns>
|
||||||
Public Function Connect() As Boolean
|
Public Function Connect() As Boolean
|
||||||
Try
|
Try
|
||||||
Channel = GetChannel()
|
_Channel = ChannelManager.GetChannel()
|
||||||
|
|
||||||
Logger.Debug("Opening channel..")
|
Logger.Debug("Opening channel..")
|
||||||
Channel.Open()
|
_Channel.Open()
|
||||||
|
|
||||||
Dim oResponse = Channel.GetClientConfig()
|
Dim oResponse = _Channel.GetClientConfig()
|
||||||
If oResponse.OK Then
|
If oResponse.OK Then
|
||||||
_ClientConfig = oResponse.ClientConfig
|
_ClientConfig = oResponse.ClientConfig
|
||||||
Else
|
Else
|
||||||
Logger.Warn("Client Configuration could not be loaded: [{0}]", oResponse.ErrorMessage)
|
Logger.Warn("Client Configuration could not be loaded: [{0}]", oResponse.ErrorMessage)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
Logger.Info($"Connection to AppService {ServerAddress} successfully established!")
|
Logger.Info($"Connection to AppService [{ServerAddress}] successfully established!")
|
||||||
|
|
||||||
|
_IsOnline = True
|
||||||
|
|
||||||
Return True
|
Return True
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
|
_IsOnline = False
|
||||||
|
|
||||||
Logger.Error(ex)
|
Logger.Error(ex)
|
||||||
Return False
|
Return False
|
||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
|
|
||||||
''' <summary>
|
''' <summary>
|
||||||
''' Aborts the channel and creates a new connection
|
''' Aborts the channel and creates a new connection
|
||||||
''' </summary>
|
''' </summary>
|
||||||
@@ -158,9 +156,11 @@ Public Class Client
|
|||||||
Logger.Warn("Connection faulted. Trying to reconnect..")
|
Logger.Warn("Connection faulted. Trying to reconnect..")
|
||||||
|
|
||||||
Try
|
Try
|
||||||
Channel.Abort()
|
_Channel.Abort()
|
||||||
Channel = GetChannel()
|
_Channel = ChannelManager.GetChannel()
|
||||||
Channel.Open()
|
_Channel.Open()
|
||||||
|
|
||||||
|
_IsOnline = True
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
Logger.Error(ex)
|
Logger.Error(ex)
|
||||||
End Try
|
End Try
|
||||||
@@ -168,14 +168,14 @@ Public Class Client
|
|||||||
|
|
||||||
Private Async Function UpdateTimer_Elapsed(sender As Object, e As Timers.ElapsedEventArgs) As Task Handles UpdateTimer.Elapsed
|
Private Async Function UpdateTimer_Elapsed(sender As Object, e As Timers.ElapsedEventArgs) As Task Handles UpdateTimer.Elapsed
|
||||||
Try
|
Try
|
||||||
Dim oTables As String() = Await Channel.GetCachedTablesAsync()
|
Dim oTables As String() = Await _Channel.GetCachedTablesAsync()
|
||||||
CachedTables = oTables.
|
_CachedTables = oTables.
|
||||||
Select(Function(table) table.ToUpper).
|
Select(Function(table) table.ToUpper).
|
||||||
ToList()
|
ToList()
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
Logger.Warn("Update of CachedTable was not successful!")
|
Logger.Warn("Update of CachedTable was not successful!")
|
||||||
Logger.Error(ex)
|
Logger.Error(ex)
|
||||||
CachedTables = New List(Of String)
|
_CachedTables = New List(Of String)
|
||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
@@ -190,7 +190,7 @@ Public Class Client
|
|||||||
''' <returns>The ObjectId of the newly generated filesystem object</returns>
|
''' <returns>The ObjectId of the newly generated filesystem object</returns>
|
||||||
Public Async Function NewFileAsync(pFilePath As String, pObjectStoreName As String, pObjectKind As String, pIDBDoctypeId As Long, Optional pImportOptions As Options.NewFileOptions = Nothing) As Task(Of Long)
|
Public Async Function NewFileAsync(pFilePath As String, pObjectStoreName As String, pObjectKind As String, pIDBDoctypeId As Long, Optional pImportOptions As Options.NewFileOptions = Nothing) As Task(Of Long)
|
||||||
Try
|
Try
|
||||||
Dim oNewFile As New Modules.IDB.NewFile(LogConfig, Channel)
|
Dim oNewFile As New Modules.IDB.NewFile(LogConfig, _Channel)
|
||||||
Return Await oNewFile.RunAsync(pFilePath, pObjectStoreName, pObjectKind, pIDBDoctypeId, pImportOptions)
|
Return Await oNewFile.RunAsync(pFilePath, pObjectStoreName, pObjectKind, pIDBDoctypeId, pImportOptions)
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -202,7 +202,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function UpdateFileAsync(pObjectId As Long, pFilePath As String, Optional pImportOptions As Options.UpdateFileOptions = Nothing) As Task(Of Long)
|
Public Async Function UpdateFileAsync(pObjectId As Long, pFilePath As String, Optional pImportOptions As Options.UpdateFileOptions = Nothing) As Task(Of Long)
|
||||||
Try
|
Try
|
||||||
Dim oUpdateFile As New Modules.IDB.UpdateFile(LogConfig, Channel)
|
Dim oUpdateFile As New Modules.IDB.UpdateFile(LogConfig, _Channel)
|
||||||
Return Await oUpdateFile.RunAsync(pFilePath, pObjectId, pImportOptions)
|
Return Await oUpdateFile.RunAsync(pFilePath, pObjectId, pImportOptions)
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -214,7 +214,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function SetObjectStateAsync(pObjectId As Long, pState As String, Optional pOptions As Options.SetObjectStateOptions = Nothing) As Task(Of Boolean)
|
Public Async Function SetObjectStateAsync(pObjectId As Long, pState As String, Optional pOptions As Options.SetObjectStateOptions = Nothing) As Task(Of Boolean)
|
||||||
Try
|
Try
|
||||||
Dim oSetObjectState As New Modules.IDB.SetObjectState(LogConfig, Channel)
|
Dim oSetObjectState As New Modules.IDB.SetObjectState(LogConfig, _Channel)
|
||||||
Return Await oSetObjectState.RunAsync(pObjectId, pState, pOptions)
|
Return Await oSetObjectState.RunAsync(pObjectId, pState, pOptions)
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -226,7 +226,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function SetAttributeValueAsync(pObjectId As Long, pName As String, pValue As Object, Optional pOptions As Options.SetAttributeValueOptions = Nothing) As Task(Of Boolean)
|
Public Async Function SetAttributeValueAsync(pObjectId As Long, pName As String, pValue As Object, Optional pOptions As Options.SetAttributeValueOptions = Nothing) As Task(Of Boolean)
|
||||||
Try
|
Try
|
||||||
Dim oSetAttributeValue As New Modules.IDB.SetAttributeValue(LogConfig, Channel)
|
Dim oSetAttributeValue As New Modules.IDB.SetAttributeValue(LogConfig, _Channel)
|
||||||
Return Await oSetAttributeValue.RunAsync(pObjectId, pName, pValue, pOptions)
|
Return Await oSetAttributeValue.RunAsync(pObjectId, pName, pValue, pOptions)
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -238,7 +238,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function CheckOutFile(pObjectId As Long, pComment As String, Optional pOptions As Options.CheckOutInOptions = Nothing) As Task(Of Long)
|
Public Async Function CheckOutFile(pObjectId As Long, pComment As String, Optional pOptions As Options.CheckOutInOptions = Nothing) As Task(Of Long)
|
||||||
Try
|
Try
|
||||||
Dim oCheckOutFile As New Modules.IDB.CheckOutFile(LogConfig, Channel)
|
Dim oCheckOutFile As New Modules.IDB.CheckOutFile(LogConfig, _Channel)
|
||||||
Return Await oCheckOutFile.RunAsync(pObjectId, pComment, pOptions)
|
Return Await oCheckOutFile.RunAsync(pObjectId, pComment, pOptions)
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -250,7 +250,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function CheckOutFile(pObjectId As Long, Optional pOptions As Options.CheckOutInOptions = Nothing) As Task(Of Long)
|
Public Async Function CheckOutFile(pObjectId As Long, Optional pOptions As Options.CheckOutInOptions = Nothing) As Task(Of Long)
|
||||||
Try
|
Try
|
||||||
Dim oCheckOutFile As New Modules.IDB.CheckOutFile(LogConfig, Channel)
|
Dim oCheckOutFile As New Modules.IDB.CheckOutFile(LogConfig, _Channel)
|
||||||
Return Await oCheckOutFile.RunAsync(pObjectId, String.Empty, pOptions)
|
Return Await oCheckOutFile.RunAsync(pObjectId, String.Empty, pOptions)
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -262,7 +262,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function CheckInFile(pObjectId As Long, Optional pOptions As Options.CheckOutInOptions = Nothing) As Task(Of Long)
|
Public Async Function CheckInFile(pObjectId As Long, Optional pOptions As Options.CheckOutInOptions = Nothing) As Task(Of Long)
|
||||||
Try
|
Try
|
||||||
Dim oCheckInFile As New Modules.IDB.CheckInFile(LogConfig, Channel)
|
Dim oCheckInFile As New Modules.IDB.CheckInFile(LogConfig, _Channel)
|
||||||
Return Await oCheckInFile.RunAsync(pObjectId, pOptions)
|
Return Await oCheckInFile.RunAsync(pObjectId, pOptions)
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -280,7 +280,7 @@ Public Class Client
|
|||||||
pIDBDoctypeId As String,
|
pIDBDoctypeId As String,
|
||||||
Optional pImportOptions As Options.ImportFileOptions = Nothing) As Task(Of ImportFileResponse)
|
Optional pImportOptions As Options.ImportFileOptions = Nothing) As Task(Of ImportFileResponse)
|
||||||
Try
|
Try
|
||||||
Dim oImportFile As New Modules.IDB.ImportFile(LogConfig, Channel)
|
Dim oImportFile As New Modules.IDB.ImportFile(LogConfig, _Channel)
|
||||||
Return Await oImportFile.RunAsync(pFilePath, pAttributeValues, pObjectStoreName, pObjectKind, pIDBDoctypeId, pImportOptions)
|
Return Await oImportFile.RunAsync(pFilePath, pAttributeValues, pObjectStoreName, pObjectKind, pIDBDoctypeId, pImportOptions)
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -290,7 +290,6 @@ Public Class Client
|
|||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
|
|
||||||
Public Async Function Globix_ImportFileAsync(
|
Public Async Function Globix_ImportFileAsync(
|
||||||
pFilePath As String,
|
pFilePath As String,
|
||||||
pProfileId As Integer,
|
pProfileId As Integer,
|
||||||
@@ -300,7 +299,7 @@ Public Class Client
|
|||||||
pIDBDoctypeId As String,
|
pIDBDoctypeId As String,
|
||||||
Optional pImportOptions As Options.ImportFileOptions = Nothing) As Task(Of Globix_ImportFileResponse)
|
Optional pImportOptions As Options.ImportFileOptions = Nothing) As Task(Of Globix_ImportFileResponse)
|
||||||
Try
|
Try
|
||||||
Dim oImportFile As New Modules.Globix.ImportFile(LogConfig, Channel)
|
Dim oImportFile As New Modules.Globix.ImportFile(LogConfig, _Channel)
|
||||||
Return Await oImportFile.RunAsync(pFilePath, pProfileId, pAttributeValues, pObjectStoreName, pObjectKind, pIDBDoctypeId, pImportOptions)
|
Return Await oImportFile.RunAsync(pFilePath, pProfileId, pAttributeValues, pObjectStoreName, pObjectKind, pIDBDoctypeId, pImportOptions)
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -312,7 +311,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Function Zooflow_GetFileObject(pObjectId As Long, pLoadFileContents As Boolean) As FileObject
|
Public Function Zooflow_GetFileObject(pObjectId As Long, pLoadFileContents As Boolean) As FileObject
|
||||||
Try
|
Try
|
||||||
Dim oGetFileObject As New Modules.Zooflow.GetFileObject(LogConfig, Channel)
|
Dim oGetFileObject As New Modules.Zooflow.GetFileObject(LogConfig, _Channel)
|
||||||
Dim oFileObject = oGetFileObject.Run(pObjectId, pLoadFileContents)
|
Dim oFileObject = oGetFileObject.Run(pObjectId, pLoadFileContents)
|
||||||
Return oFileObject
|
Return oFileObject
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -472,7 +471,7 @@ Public Class Client
|
|||||||
.Language = pOptions.Language
|
.Language = pOptions.Language
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Dim oResponse = Channel.GetAttributeValue(oArgs)
|
Dim oResponse = _Channel.GetAttributeValue(oArgs)
|
||||||
If oResponse.OK = False Then
|
If oResponse.OK = False Then
|
||||||
Return New VariableValue()
|
Return New VariableValue()
|
||||||
|
|
||||||
@@ -536,7 +535,7 @@ Public Class Client
|
|||||||
Dim oAttributes As New List(Of ObjectAttribute)
|
Dim oAttributes As New List(Of ObjectAttribute)
|
||||||
|
|
||||||
Try
|
Try
|
||||||
Dim oResult As TableResult = Channel.ReturnDatatable_MSSQL_IDB($"EXEC [PRIDB_GET_VALUE_DT] {pObjectId}, '{pLanguage}'")
|
Dim oResult As TableResult = _Channel.ReturnDatatable_MSSQL_IDB($"EXEC [PRIDB_GET_VALUE_DT] {pObjectId}, '{pLanguage}'")
|
||||||
|
|
||||||
If oResult.OK = False Then
|
If oResult.OK = False Then
|
||||||
Throw New ApplicationException(oResult.ErrorMessage)
|
Throw New ApplicationException(oResult.ErrorMessage)
|
||||||
@@ -577,7 +576,7 @@ Public Class Client
|
|||||||
|
|
||||||
Dim oSql = $"DECLARE @NEW_OBJ_MD_ID BIGINT
|
Dim oSql = $"DECLARE @NEW_OBJ_MD_ID BIGINT
|
||||||
EXEC PRIDB_NEW_OBJ_DATA({pObjectId}, '{pAttributeName}', '{oUsername}', '{pValue}', '{oLanguage}', 0, @OMD_ID = @NEW_OBJ_MD_ID OUTPUT)"
|
EXEC PRIDB_NEW_OBJ_DATA({pObjectId}, '{pAttributeName}', '{oUsername}', '{pValue}', '{oLanguage}', 0, @OMD_ID = @NEW_OBJ_MD_ID OUTPUT)"
|
||||||
Dim oResult = Channel.ExecuteNonQuery_MSSQL_IDB(oSql)
|
Dim oResult = _Channel.ExecuteNonQuery_MSSQL_IDB(oSql)
|
||||||
|
|
||||||
If oResult.OK = False Then
|
If oResult.OK = False Then
|
||||||
Logger.Warn("Error while deleting Term object")
|
Logger.Warn("Error while deleting Term object")
|
||||||
@@ -594,7 +593,7 @@ Public Class Client
|
|||||||
|
|
||||||
Dim oIdIsForeign As Integer = 1
|
Dim oIdIsForeign As Integer = 1
|
||||||
Dim oDELSQL = $"EXEC PRIDB_DELETE_TERM_OBJECT_METADATA {pObjectId},'{pAttributeName}','{pTerm2Delete}','{oUsername}','{oLanguage}',{oIdIsForeign}"
|
Dim oDELSQL = $"EXEC PRIDB_DELETE_TERM_OBJECT_METADATA {pObjectId},'{pAttributeName}','{pTerm2Delete}','{oUsername}','{oLanguage}',{oIdIsForeign}"
|
||||||
Dim oResult = Channel.ExecuteNonQuery_MSSQL_IDB(oDELSQL)
|
Dim oResult = _Channel.ExecuteNonQuery_MSSQL_IDB(oDELSQL)
|
||||||
|
|
||||||
If oResult.OK = False Then
|
If oResult.OK = False Then
|
||||||
Logger.Warn("Error while deleting Term object")
|
Logger.Warn("Error while deleting Term object")
|
||||||
@@ -611,7 +610,7 @@ Public Class Client
|
|||||||
#Region "GetDatatable"
|
#Region "GetDatatable"
|
||||||
Public Function GetDatatableFromIDB(pSQL As String) As GetDatatableResponse
|
Public Function GetDatatableFromIDB(pSQL As String) As GetDatatableResponse
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Channel.ReturnDatatable(New GetDatatableRequest() With {
|
Dim oResponse = _Channel.ReturnDatatable(New GetDatatableRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.IDB
|
.NamedDatabase = DatabaseName.IDB
|
||||||
})
|
})
|
||||||
@@ -624,7 +623,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Function GetDatatableFromECM(pSQL As String) As GetDatatableResponse
|
Public Function GetDatatableFromECM(pSQL As String) As GetDatatableResponse
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Channel.ReturnDatatable(New GetDatatableRequest() With {
|
Dim oResponse = _Channel.ReturnDatatable(New GetDatatableRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.ECM
|
.NamedDatabase = DatabaseName.ECM
|
||||||
})
|
})
|
||||||
@@ -637,7 +636,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Function GetDatatableFromConnection(pSQL As String, pConnectionId As Integer) As GetDatatableResponse
|
Public Function GetDatatableFromConnection(pSQL As String, pConnectionId As Integer) As GetDatatableResponse
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Channel.ReturnDatatable(New GetDatatableRequest() With {
|
Dim oResponse = _Channel.ReturnDatatable(New GetDatatableRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.None,
|
.NamedDatabase = DatabaseName.None,
|
||||||
.ConnectionId = pConnectionId
|
.ConnectionId = pConnectionId
|
||||||
@@ -651,7 +650,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function GetDatatableFromIDBAsync(pSQL As String) As Task(Of GetDatatableResponse)
|
Public Async Function GetDatatableFromIDBAsync(pSQL As String) As Task(Of GetDatatableResponse)
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Await Channel.ReturnDatatableAsync(New GetDatatableRequest() With {
|
Dim oResponse = Await _Channel.ReturnDatatableAsync(New GetDatatableRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.IDB
|
.NamedDatabase = DatabaseName.IDB
|
||||||
})
|
})
|
||||||
@@ -664,7 +663,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function GetDatatableFromECMAsync(pSQL As String) As Task(Of GetDatatableResponse)
|
Public Async Function GetDatatableFromECMAsync(pSQL As String) As Task(Of GetDatatableResponse)
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Await Channel.ReturnDatatableAsync(New GetDatatableRequest() With {
|
Dim oResponse = Await _Channel.ReturnDatatableAsync(New GetDatatableRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.ECM
|
.NamedDatabase = DatabaseName.ECM
|
||||||
})
|
})
|
||||||
@@ -677,7 +676,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function GetDatatableFromConnectionAsync(pSQL As String, Optional pConnectionId As Integer = 0) As Task(Of GetDatatableResponse)
|
Public Async Function GetDatatableFromConnectionAsync(pSQL As String, Optional pConnectionId As Integer = 0) As Task(Of GetDatatableResponse)
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Await Channel.ReturnDatatableAsync(New GetDatatableRequest() With {
|
Dim oResponse = Await _Channel.ReturnDatatableAsync(New GetDatatableRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.None,
|
.NamedDatabase = DatabaseName.None,
|
||||||
.ConnectionId = pConnectionId
|
.ConnectionId = pConnectionId
|
||||||
@@ -693,7 +692,7 @@ Public Class Client
|
|||||||
#Region "GetScalarValue"
|
#Region "GetScalarValue"
|
||||||
Public Function GetScalarValueFromIDB(pSQL As String) As GetScalarValueResponse
|
Public Function GetScalarValueFromIDB(pSQL As String) As GetScalarValueResponse
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Channel.ReturnScalarValue(New GetScalarValueRequest() With {
|
Dim oResponse = _Channel.ReturnScalarValue(New GetScalarValueRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.IDB
|
.NamedDatabase = DatabaseName.IDB
|
||||||
})
|
})
|
||||||
@@ -706,7 +705,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Function GetScalarValueFromECM(pSQL As String) As GetScalarValueResponse
|
Public Function GetScalarValueFromECM(pSQL As String) As GetScalarValueResponse
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Channel.ReturnScalarValue(New GetScalarValueRequest() With {
|
Dim oResponse = _Channel.ReturnScalarValue(New GetScalarValueRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.ECM
|
.NamedDatabase = DatabaseName.ECM
|
||||||
})
|
})
|
||||||
@@ -719,7 +718,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Function GetScalarValueFromConnection(pSQL As String, pConnectionId As Integer) As GetScalarValueResponse
|
Public Function GetScalarValueFromConnection(pSQL As String, pConnectionId As Integer) As GetScalarValueResponse
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Channel.ReturnScalarValue(New GetScalarValueRequest() With {
|
Dim oResponse = _Channel.ReturnScalarValue(New GetScalarValueRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.None,
|
.NamedDatabase = DatabaseName.None,
|
||||||
.ConnectionId = pConnectionId
|
.ConnectionId = pConnectionId
|
||||||
@@ -733,7 +732,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function GetScalarValueFromIDBAsync(pSQL As String) As Task(Of GetScalarValueResponse)
|
Public Async Function GetScalarValueFromIDBAsync(pSQL As String) As Task(Of GetScalarValueResponse)
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Await Channel.ReturnScalarValueAsync(New GetScalarValueRequest() With {
|
Dim oResponse = Await _Channel.ReturnScalarValueAsync(New GetScalarValueRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.IDB
|
.NamedDatabase = DatabaseName.IDB
|
||||||
})
|
})
|
||||||
@@ -746,7 +745,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function GetScalarValueFromECMAsync(pSQL As String) As Task(Of GetScalarValueResponse)
|
Public Async Function GetScalarValueFromECMAsync(pSQL As String) As Task(Of GetScalarValueResponse)
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Await Channel.ReturnScalarValueAsync(New GetScalarValueRequest() With {
|
Dim oResponse = Await _Channel.ReturnScalarValueAsync(New GetScalarValueRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.ECM
|
.NamedDatabase = DatabaseName.ECM
|
||||||
})
|
})
|
||||||
@@ -759,7 +758,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function GetScalarValueFromConnectionAsync(pSQL As String, pConnectionId As Integer) As Task(Of GetScalarValueResponse)
|
Public Async Function GetScalarValueFromConnectionAsync(pSQL As String, pConnectionId As Integer) As Task(Of GetScalarValueResponse)
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Await Channel.ReturnScalarValueAsync(New GetScalarValueRequest() With {
|
Dim oResponse = Await _Channel.ReturnScalarValueAsync(New GetScalarValueRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.None,
|
.NamedDatabase = DatabaseName.None,
|
||||||
.ConnectionId = pConnectionId
|
.ConnectionId = pConnectionId
|
||||||
@@ -775,7 +774,7 @@ Public Class Client
|
|||||||
#Region "ExecuteNonQuery"
|
#Region "ExecuteNonQuery"
|
||||||
Public Function ExecuteNonQueryFromIDB(pSQL As String) As ExecuteNonQueryResponse
|
Public Function ExecuteNonQueryFromIDB(pSQL As String) As ExecuteNonQueryResponse
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Channel.ExecuteNonQuery(New ExecuteNonQueryRequest() With {
|
Dim oResponse = _Channel.ExecuteNonQuery(New ExecuteNonQueryRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.IDB
|
.NamedDatabase = DatabaseName.IDB
|
||||||
})
|
})
|
||||||
@@ -788,7 +787,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Function ExecuteNonQueryFromECM(pSQL As String) As ExecuteNonQueryResponse
|
Public Function ExecuteNonQueryFromECM(pSQL As String) As ExecuteNonQueryResponse
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Channel.ExecuteNonQuery(New ExecuteNonQueryRequest() With {
|
Dim oResponse = _Channel.ExecuteNonQuery(New ExecuteNonQueryRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.ECM
|
.NamedDatabase = DatabaseName.ECM
|
||||||
})
|
})
|
||||||
@@ -801,7 +800,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Function ExecuteNonQueryFromConnection(pSQL As String, pConnectionId As Integer) As ExecuteNonQueryResponse
|
Public Function ExecuteNonQueryFromConnection(pSQL As String, pConnectionId As Integer) As ExecuteNonQueryResponse
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Channel.ExecuteNonQuery(New ExecuteNonQueryRequest() With {
|
Dim oResponse = _Channel.ExecuteNonQuery(New ExecuteNonQueryRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.None,
|
.NamedDatabase = DatabaseName.None,
|
||||||
.ConnectionId = pConnectionId
|
.ConnectionId = pConnectionId
|
||||||
@@ -815,7 +814,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function ExecuteNonQueryFromIDBAsync(pSQL As String) As Task(Of ExecuteNonQueryResponse)
|
Public Async Function ExecuteNonQueryFromIDBAsync(pSQL As String) As Task(Of ExecuteNonQueryResponse)
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Await Channel.ExecuteNonQueryAsync(New ExecuteNonQueryRequest() With {
|
Dim oResponse = Await _Channel.ExecuteNonQueryAsync(New ExecuteNonQueryRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.IDB
|
.NamedDatabase = DatabaseName.IDB
|
||||||
})
|
})
|
||||||
@@ -828,7 +827,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function ExecuteNonQueryFromECMAsync(pSQL As String) As Task(Of ExecuteNonQueryResponse)
|
Public Async Function ExecuteNonQueryFromECMAsync(pSQL As String) As Task(Of ExecuteNonQueryResponse)
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Await Channel.ExecuteNonQueryAsync(New ExecuteNonQueryRequest() With {
|
Dim oResponse = Await _Channel.ExecuteNonQueryAsync(New ExecuteNonQueryRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.ECM
|
.NamedDatabase = DatabaseName.ECM
|
||||||
})
|
})
|
||||||
@@ -841,7 +840,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function ExecuteNonQueryFromConnectionAsync(pSQL As String, pConnectionId As Integer) As Task(Of ExecuteNonQueryResponse)
|
Public Async Function ExecuteNonQueryFromConnectionAsync(pSQL As String, pConnectionId As Integer) As Task(Of ExecuteNonQueryResponse)
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Await Channel.ExecuteNonQueryAsync(New ExecuteNonQueryRequest() With {
|
Dim oResponse = Await _Channel.ExecuteNonQueryAsync(New ExecuteNonQueryRequest() With {
|
||||||
.SqlCommand = pSQL,
|
.SqlCommand = pSQL,
|
||||||
.NamedDatabase = DatabaseName.None,
|
.NamedDatabase = DatabaseName.None,
|
||||||
.ConnectionId = pConnectionId
|
.ConnectionId = pConnectionId
|
||||||
@@ -857,7 +856,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Function GetDatatableByName(DatatableName As String, Optional FilterExpression As String = "", Optional SortByColumn As String = "") As TableResult
|
Public Function GetDatatableByName(DatatableName As String, Optional FilterExpression As String = "", Optional SortByColumn As String = "") As TableResult
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Channel.ReturnDatatableFromCache(DatatableName, FilterExpression, SortByColumn)
|
Dim oResponse = _Channel.ReturnDatatableFromCache(DatatableName, FilterExpression, SortByColumn)
|
||||||
Return oResponse
|
Return oResponse
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
Logger.Error(ex)
|
Logger.Error(ex)
|
||||||
@@ -867,7 +866,7 @@ Public Class Client
|
|||||||
|
|
||||||
Public Async Function GetDatatableByNameAsync(DatatableName As String, Optional FilterExpression As String = "", Optional SortByColumn As String = "") As Task(Of TableResult)
|
Public Async Function GetDatatableByNameAsync(DatatableName As String, Optional FilterExpression As String = "", Optional SortByColumn As String = "") As Task(Of TableResult)
|
||||||
Try
|
Try
|
||||||
Dim oResponse = Await Channel.ReturnDatatableFromCacheAsync(DatatableName, FilterExpression, SortByColumn)
|
Dim oResponse = Await _Channel.ReturnDatatableFromCacheAsync(DatatableName, FilterExpression, SortByColumn)
|
||||||
Return oResponse
|
Return oResponse
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
Logger.Error(ex)
|
Logger.Error(ex)
|
||||||
@@ -885,7 +884,7 @@ Public Class Client
|
|||||||
''' <returns></returns>
|
''' <returns></returns>
|
||||||
Public Function GetDocumentInfo(UserId As Long, ObjectId As Long) As DocumentInfo
|
Public Function GetDocumentInfo(UserId As Long, ObjectId As Long) As DocumentInfo
|
||||||
Try
|
Try
|
||||||
Dim oResponse As DocumentInfoResponse = Channel.GetFileInfoByObjectId(New DocumentInfoRequest With {
|
Dim oResponse As DocumentInfoResponse = _Channel.GetFileInfoByObjectId(New DocumentInfoRequest With {
|
||||||
.ObjectId = ObjectId,
|
.ObjectId = ObjectId,
|
||||||
.UserId = UserId
|
.UserId = UserId
|
||||||
})
|
})
|
||||||
@@ -916,7 +915,7 @@ Public Class Client
|
|||||||
.ObjectId = ObjectId,
|
.ObjectId = ObjectId,
|
||||||
.UserId = UserId
|
.UserId = UserId
|
||||||
}
|
}
|
||||||
Dim oResponse As DocumentInfoResponse = Await Channel.GetFileInfoByObjectIdAsync(oParams)
|
Dim oResponse As DocumentInfoResponse = Await _Channel.GetFileInfoByObjectIdAsync(oParams)
|
||||||
|
|
||||||
Return New DocumentInfo With {
|
Return New DocumentInfo With {
|
||||||
.AccessRight = oResponse.FileRight,
|
.AccessRight = oResponse.FileRight,
|
||||||
@@ -930,23 +929,7 @@ Public Class Client
|
|||||||
|
|
||||||
|
|
||||||
#Region "Private Functions"
|
#Region "Private Functions"
|
||||||
''' <summary>
|
|
||||||
''' Creates a channel and adds a Faulted-Handler
|
|
||||||
''' </summary>
|
|
||||||
''' <returns>A channel object</returns>
|
|
||||||
Private Function GetChannel() As IEDMIServiceChannel
|
|
||||||
Try
|
|
||||||
Logger.Debug("...Creating channel..")
|
|
||||||
Dim oChannel = ChannelFactory.CreateChannel()
|
|
||||||
|
|
||||||
AddHandler oChannel.Faulted, AddressOf Reconnect
|
|
||||||
|
|
||||||
Return oChannel
|
|
||||||
Catch ex As Exception
|
|
||||||
Logger.Error(ex)
|
|
||||||
Throw ex
|
|
||||||
End Try
|
|
||||||
End Function
|
|
||||||
|
|
||||||
Private Function GetUserLanguage(pOverrideLanguage As String) As String
|
Private Function GetUserLanguage(pOverrideLanguage As String) As String
|
||||||
Return NotNull(pOverrideLanguage, Threading.Thread.CurrentThread.CurrentUICulture.Name)
|
Return NotNull(pOverrideLanguage, Threading.Thread.CurrentThread.CurrentUICulture.Name)
|
||||||
|
|||||||
@@ -1,24 +1,21 @@
|
|||||||
Imports System.ServiceModel
|
Imports System.ServiceModel
|
||||||
Imports System.Xml
|
Imports System.Xml
|
||||||
|
Imports DigitalData.Modules.Base
|
||||||
|
Imports DigitalData.Modules.EDMI.API.EDMIServiceReference
|
||||||
|
Imports DigitalData.Modules.Logging
|
||||||
|
|
||||||
Public Class Channel
|
Public Class Channel
|
||||||
' Infos about MaxBufferSize and MaxBufferPoolSize
|
Inherits BaseClass
|
||||||
' https://social.msdn.microsoft.com/Forums/vstudio/en-US/d6e234d3-942f-4e9d-8470-32618d3f3212/maxbufferpoolsize-vs-maxbuffersize?forum=wcf
|
|
||||||
|
|
||||||
Public Const MAX_RECEIVED_MESSAGE_SIZE = 2147483647 ' 1GB
|
Private ReadOnly ChannelFactory As ChannelFactory(Of IEDMIServiceChannel)
|
||||||
Public Const MAX_BUFFER_SIZE = 104857600 ' 100MB
|
|
||||||
Public Const MAX_BUFFER_POOL_SIZE = 1048576 ' 1MB
|
|
||||||
|
|
||||||
Public Const MAX_CONNECTIONS = 500
|
Public Event Reconnect As EventHandler
|
||||||
Public Const MAX_ARRAY_LENGTH = 2147483647
|
|
||||||
Public Const MAX_STRING_CONTENT_LENGTH = 2147483647
|
|
||||||
|
|
||||||
Public Shared Function GetBinding(Optional AuthenticationMode As TcpClientCredentialType = TcpClientCredentialType.Windows) As NetTcpBinding
|
Public Shared Function GetBinding(Optional AuthenticationMode As TcpClientCredentialType = TcpClientCredentialType.Windows) As NetTcpBinding
|
||||||
Return New NetTcpBinding() With {
|
Return New NetTcpBinding() With {
|
||||||
.MaxReceivedMessageSize = MAX_RECEIVED_MESSAGE_SIZE,
|
.MaxReceivedMessageSize = Constants.ChannelSettings.MAX_RECEIVED_MESSAGE_SIZE,
|
||||||
.MaxBufferSize = MAX_BUFFER_SIZE,
|
.MaxBufferSize = Constants.ChannelSettings.MAX_BUFFER_SIZE,
|
||||||
.MaxBufferPoolSize = MAX_BUFFER_POOL_SIZE,
|
.MaxBufferPoolSize = Constants.ChannelSettings.MAX_BUFFER_POOL_SIZE,
|
||||||
.TransferMode = TransferMode.Streamed,
|
.TransferMode = TransferMode.Streamed,
|
||||||
.Security = New NetTcpSecurity() With {
|
.Security = New NetTcpSecurity() With {
|
||||||
.Mode = SecurityMode.Transport,
|
.Mode = SecurityMode.Transport,
|
||||||
@@ -27,11 +24,41 @@ Public Class Channel
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
.ReaderQuotas = New XmlDictionaryReaderQuotas() With {
|
.ReaderQuotas = New XmlDictionaryReaderQuotas() With {
|
||||||
.MaxArrayLength = MAX_ARRAY_LENGTH,
|
.MaxArrayLength = Constants.ChannelSettings.MAX_ARRAY_LENGTH,
|
||||||
.MaxStringContentLength = MAX_STRING_CONTENT_LENGTH
|
.MaxStringContentLength = Constants.ChannelSettings.MAX_STRING_CONTENT_LENGTH
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
|
Public Sub New(pLogConfig As LogConfig, pServerAddress As ServerAddressStruct)
|
||||||
|
MyBase.New(pLogConfig)
|
||||||
|
ChannelFactory = GetChannelFactory(pServerAddress)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
''' <summary>
|
||||||
|
''' Creates a channel and adds a Faulted-Handler
|
||||||
|
''' </summary>
|
||||||
|
''' <returns>A channel object</returns>
|
||||||
|
Public Function GetChannel() As IEDMIServiceChannel
|
||||||
|
Try
|
||||||
|
Logger.Debug("Creating channel.")
|
||||||
|
Dim oChannel = ChannelFactory.CreateChannel()
|
||||||
|
|
||||||
|
AddHandler oChannel.Faulted, Sub() RaiseEvent Reconnect(Me, Nothing)
|
||||||
|
|
||||||
|
Return oChannel
|
||||||
|
Catch ex As Exception
|
||||||
|
Logger.Error(ex)
|
||||||
|
Throw ex
|
||||||
|
End Try
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Private Function GetChannelFactory(pServerAddress As ServerAddressStruct) As ChannelFactory(Of IEDMIServiceChannel)
|
||||||
|
Dim oBinding = GetBinding()
|
||||||
|
Dim oAddress = New EndpointAddress($"net.tcp://{pServerAddress.Host}:{pServerAddress.Port}/DigitalData/Services/Main")
|
||||||
|
Dim oFactory = New ChannelFactory(Of IEDMIServiceChannel)(oBinding, oAddress)
|
||||||
|
Return oFactory
|
||||||
|
End Function
|
||||||
End Class
|
End Class
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
31
Modules.EDMIAPI/Client/Connection.vb
Normal file
31
Modules.EDMIAPI/Client/Connection.vb
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
Imports DigitalData.Modules.Base
|
||||||
|
Imports DigitalData.Modules.Logging
|
||||||
|
|
||||||
|
Public Class Connection
|
||||||
|
Public Function ParseServiceAddress(pHost As String, pPort As Integer) As ServerAddressStruct
|
||||||
|
Dim oAddress As ServerAddressStruct
|
||||||
|
|
||||||
|
oAddress.Host = pHost
|
||||||
|
oAddress.Port = pPort
|
||||||
|
|
||||||
|
Return oAddress
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Function ParseServiceAddress(pAddress As String) As ServerAddressStruct
|
||||||
|
Dim oAddressList As List(Of String)
|
||||||
|
Dim oAddress As ServerAddressStruct
|
||||||
|
|
||||||
|
If pAddress.Contains(";"c) Then
|
||||||
|
oAddressList = pAddress.Split(";"c).ToList
|
||||||
|
ElseIf pAddress.Contains(":"c) Then
|
||||||
|
oAddressList = pAddress.Split(":"c).ToList
|
||||||
|
Else
|
||||||
|
oAddressList = New List(Of String) From {pAddress, Constants.DEFAULT_SERVICE_PORT}
|
||||||
|
End If
|
||||||
|
|
||||||
|
oAddress.Host = oAddressList.First()
|
||||||
|
oAddress.Port = oAddressList.Item(1)
|
||||||
|
|
||||||
|
Return oAddress
|
||||||
|
End Function
|
||||||
|
End Class
|
||||||
4
Modules.EDMIAPI/Client/ServerAddressStruct.vb
Normal file
4
Modules.EDMIAPI/Client/ServerAddressStruct.vb
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
Public Structure ServerAddressStruct
|
||||||
|
Public Host As String
|
||||||
|
Public Port As Integer
|
||||||
|
End Structure
|
||||||
@@ -31,4 +31,19 @@
|
|||||||
Public Const VECTOR_STRING = "VECTOR STRING"
|
Public Const VECTOR_STRING = "VECTOR STRING"
|
||||||
Public Const VECTOR_INTEGER = "VECTOR INTEGER"
|
Public Const VECTOR_INTEGER = "VECTOR INTEGER"
|
||||||
End Class
|
End Class
|
||||||
|
|
||||||
|
''' <summary>
|
||||||
|
''' Infos about MaxBufferSize and MaxBufferPoolSize
|
||||||
|
''' https://social.msdn.microsoft.com/Forums/vstudio/en-US/d6e234d3-942f-4e9d-8470-32618d3f3212/maxbufferpoolsize-vs-maxbuffersize?forum=wcf
|
||||||
|
''' </summary>
|
||||||
|
Public Class ChannelSettings
|
||||||
|
Public Const MAX_RECEIVED_MESSAGE_SIZE = 2147483647 ' 1GB
|
||||||
|
Public Const MAX_BUFFER_SIZE = 104857600 ' 100MB
|
||||||
|
Public Const MAX_BUFFER_POOL_SIZE = 1048576 ' 1MB
|
||||||
|
|
||||||
|
Public Const MAX_CONNECTIONS = 500
|
||||||
|
Public Const MAX_ARRAY_LENGTH = 2147483647
|
||||||
|
Public Const MAX_STRING_CONTENT_LENGTH = 2147483647
|
||||||
|
End Class
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -72,10 +72,12 @@
|
|||||||
<Import Include="System.Threading.Tasks" />
|
<Import Include="System.Threading.Tasks" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Compile Include="Client\Connection.vb" />
|
||||||
<Compile Include="Client\NewFile.vb" />
|
<Compile Include="Client\NewFile.vb" />
|
||||||
<Compile Include="Client\Options.vb" />
|
<Compile Include="Client\Options.vb" />
|
||||||
<Compile Include="Client\Rights.vb" />
|
<Compile Include="Client\Rights.vb" />
|
||||||
<Compile Include="Client\Channel.vb" />
|
<Compile Include="Client\Channel.vb" />
|
||||||
|
<Compile Include="Client\ServerAddressStruct.vb" />
|
||||||
<Compile Include="Modules\BaseMethod.vb" />
|
<Compile Include="Modules\BaseMethod.vb" />
|
||||||
<Compile Include="Modules\Globix\ImportFile.vb" />
|
<Compile Include="Modules\Globix\ImportFile.vb" />
|
||||||
<Compile Include="Helpers.vb" />
|
<Compile Include="Helpers.vb" />
|
||||||
@@ -277,6 +279,10 @@
|
|||||||
<WCFMetadata Include="Connected Services\" />
|
<WCFMetadata Include="Connected Services\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Modules.Base\Base\Base.vbproj">
|
||||||
|
<Project>{6ea0c51f-c2b1-4462-8198-3de0b32b74f8}</Project>
|
||||||
|
<Name>Base</Name>
|
||||||
|
</ProjectReference>
|
||||||
<ProjectReference Include="..\Modules.Database\Database.vbproj">
|
<ProjectReference Include="..\Modules.Database\Database.vbproj">
|
||||||
<Project>{eaf0ea75-5fa7-485d-89c7-b2d843b03a96}</Project>
|
<Project>{eaf0ea75-5fa7-485d-89c7-b2d843b03a96}</Project>
|
||||||
<Name>Database</Name>
|
<Name>Database</Name>
|
||||||
|
|||||||
Reference in New Issue
Block a user