diff --git a/GUIs.ZooFlow/Administration/ClassGIDatatables.vb b/GUIs.ZooFlow/Administration/ClassGIDatatables.vb
new file mode 100644
index 00000000..a6fcb3f0
--- /dev/null
+++ b/GUIs.ZooFlow/Administration/ClassGIDatatables.vb
@@ -0,0 +1,138 @@
+Public Class ClassGIDatatables
+
+#Region "TBDD_GROUP"
+ Public Shared Function AddGroupToProfile(GroupId As Integer, ProfileId As Integer) As Boolean
+ Try
+ Dim oSQL = $"
+ INSERT INTO TBDD_USRGRP_DOKTYPE
+ (DOCTYPE_ID, GROUP_ID, ADDED_WHO)
+ VALUES ({ProfileId}, {GroupId}, '{Environment.UserName}')
+ "
+ Return My.DatabaseECM.ExecuteNonQuery(oSQL)
+ Catch ex As Exception
+ LOGGER.Error(ex)
+ Return False
+ End Try
+ End Function
+
+ Public Shared Function RemoveGroupFromProfile(GroupId As Integer, ProfileId As Integer) As Boolean
+ Try
+ Dim oSQL = $"DELETE FROM TBDD_USRGRP_DOKTYPE WHERE DOCTYPE_ID = {ProfileId} AND GROUP_ID = {GroupId}"
+ Return My.DatabaseECM.ExecuteNonQuery(oSQL)
+ Catch ex As Exception
+ LOGGER.Error(ex)
+ Return False
+ End Try
+ End Function
+
+ Public Shared Function GetAssignedGroups(ProfileId As Integer) As DataTable
+ Try
+ Dim oSQL As String = $"
+ SELECT GUID, NAME FROM TBDD_GROUPS
+ WHERE GUID IN
+ (
+ SELECT GROUP_ID
+ FROM TBDD_USRGRP_DOKTYPE
+ WHERE DOCTYPE_ID = {ProfileId}
+ )
+ "
+ Dim oDatatable As DataTable = My.DatabaseECM.GetDatatable(oSQL)
+
+ Return oDatatable
+ Catch ex As Exception
+ LOGGER.Error(ex)
+ Return Nothing
+ End Try
+ End Function
+
+ Public Shared Function GetAvailableGroups(ProfileId As Integer) As DataTable
+ Try
+ Dim oSQL As String = $"
+ SELECT GUID, NAME FROM TBDD_GROUPS
+ WHERE GUID NOT IN
+ (
+ SELECT GROUP_ID
+ FROM TBDD_USRGRP_DOKTYPE
+ WHERE DOCTYPE_ID = {ProfileId}
+ )
+ "
+ Dim oDatatable As DataTable = My.DatabaseECM.GetDatatable(oSQL)
+
+ Return oDatatable
+ Catch ex As Exception
+ LOGGER.Error(ex)
+ Return Nothing
+ End Try
+ End Function
+#End Region
+
+#Region "TBDD_USER"
+
+ Public Shared Function AddUserToProfile(UserId As Integer, ProfileId As Integer) As Boolean
+ Try
+ Dim oSQL = $"
+ INSERT INTO TBDD_USER_DOKTYPE
+ (DOCTYPE_ID, USER_ID, ADDED_WHO)
+ VALUES ({ProfileId}, {UserId}, '{Environment.UserName}')
+ "
+ Return My.DatabaseECM.ExecuteNonQuery(oSQL)
+ Catch ex As Exception
+ LOGGER.Error(ex)
+ Return False
+ End Try
+ End Function
+
+ Public Shared Function RemoveUserFromProfile(UserId As Integer, ProfileId As Integer) As Boolean
+ Try
+ Dim oSQL = $"DELETE FROM TBDD_USER_DOKTYPE WHERE DOCTYPE_ID = {ProfileId} AND USER_ID = {UserId}"
+ Return My.DatabaseECM.ExecuteNonQuery(oSQL)
+ Catch ex As Exception
+ LOGGER.Error(ex)
+ Return False
+ End Try
+ End Function
+
+ Public Shared Function GetAssignedUsers(ProfileId As Integer) As DataTable
+ Try
+ Dim oSQL As String = $"
+ SELECT GUID, EMAIL, NAME + ', ' + PRENAME AS NAME FROM TBDD_USER
+ WHERE GUID IN (
+ SELECT USER_ID
+ FROM TBDD_USER_DOKTYPE
+ WHERE DOCTYPE_ID = {ProfileId}
+ )
+ "
+ Dim oDatatable As DataTable = My.DatabaseECM.GetDatatable(oSQL)
+
+ Return oDatatable
+ Catch ex As Exception
+ LOGGER.Error(ex)
+ Return Nothing
+ End Try
+ End Function
+
+ Public Shared Function GetAvailableUsers(ProfileId As Integer) As DataTable
+ Try
+ Dim oSQL As String = $"
+ SELECT GUID, EMAIL, NAME + ', ' + PRENAME AS NAME FROM TBDD_USER
+ WHERE GUID NOT IN (
+ SELECT USER_ID
+ FROM TBDD_USER_DOKTYPE
+ WHERE DOCTYPE_ID = {ProfileId}
+ )
+ AND GUID IN (SELECT USER_ID FROM [dbo].[FNDD_GET_USER_FOR_MODULE] ('GLOBIX', 1))
+ "
+ Dim oDatatable As DataTable = My.DatabaseECM.GetDatatable(oSQL)
+
+ Return oDatatable
+ Catch ex As Exception
+ LOGGER.Error(ex)
+ Return Nothing
+ End Try
+ End Function
+#End Region
+
+
+
+
+ End Class
diff --git a/GUIs.ZooFlow/Administration/frmAdmin_Globix.Designer.vb b/GUIs.ZooFlow/Administration/frmAdmin_Globix.Designer.vb
index 82d910bb..eca181ed 100644
--- a/GUIs.ZooFlow/Administration/frmAdmin_Globix.Designer.vb
+++ b/GUIs.ZooFlow/Administration/frmAdmin_Globix.Designer.vb
@@ -32,7 +32,7 @@ Partial Class frmAdmin_Globix
Me.BarButtonSave = New DevExpress.XtraBars.BarButtonItem()
Me.labelStatus = New DevExpress.XtraBars.BarStaticItem()
Me.BarButtonNew = New DevExpress.XtraBars.BarButtonItem()
- Me.BarButtonItem2 = New DevExpress.XtraBars.BarButtonItem()
+ Me.BarButtonItemDelete = New DevExpress.XtraBars.BarButtonItem()
Me.RibbonPage1 = New DevExpress.XtraBars.Ribbon.RibbonPage()
Me.RibbonPageGroup1 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
Me.RibbonStatusBar1 = New DevExpress.XtraBars.Ribbon.RibbonStatusBar()
@@ -46,12 +46,12 @@ Partial Class frmAdmin_Globix
Me.XtraTabControl1 = New DevExpress.XtraTab.XtraTabControl()
Me.XtraTabPageProfile = New DevExpress.XtraTab.XtraTabPage()
Me.LayoutControlProfile = New DevExpress.XtraLayout.LayoutControl()
+ Me.TextEdit1 = New DevExpress.XtraEditors.TextEdit()
Me.IDB_OBJECT_STORE_IDComboBox = New System.Windows.Forms.ComboBox()
Me.VWIDB_OBJECT_STOREBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.SEQUENCENumericUpDown = New System.Windows.Forms.NumericUpDown()
Me.TBDD_INDEX_MANBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.AKTIVCheckBox = New System.Windows.Forms.CheckBox()
- Me.ERSTELLTWANNTextBox = New System.Windows.Forms.TextBox()
Me.GEAENDERTWANNTextBox = New System.Windows.Forms.TextBox()
Me.TextEditErstelltWer = New DevExpress.XtraEditors.TextEdit()
Me.TextEditGeandertWer = New DevExpress.XtraEditors.TextEdit()
@@ -67,21 +67,22 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem12 = New DevExpress.XtraLayout.LayoutControlItem()
Me.LayoutControlItem10 = New DevExpress.XtraLayout.LayoutControlItem()
Me.LayoutControlItem3 = New DevExpress.XtraLayout.LayoutControlItem()
- Me.LayoutControlItem32 = New DevExpress.XtraLayout.LayoutControlItem()
Me.LayoutControlItem5 = New DevExpress.XtraLayout.LayoutControlItem()
- Me.LayoutControlItem36 = New DevExpress.XtraLayout.LayoutControlItem()
Me.LayoutControlItem30 = New DevExpress.XtraLayout.LayoutControlItem()
Me.LayoutControlItem20 = New DevExpress.XtraLayout.LayoutControlItem()
- Me.LayoutControlItem26 = New DevExpress.XtraLayout.LayoutControlItem()
Me.LayoutControlItem4 = New DevExpress.XtraLayout.LayoutControlItem()
Me.EmptySpaceItem1 = New DevExpress.XtraLayout.EmptySpaceItem()
Me.LayoutControlItem22 = New DevExpress.XtraLayout.LayoutControlItem()
Me.LayoutControlItem1 = New DevExpress.XtraLayout.LayoutControlItem()
Me.LayoutControlItem25 = New DevExpress.XtraLayout.LayoutControlItem()
Me.EmptySpaceItem3 = New DevExpress.XtraLayout.EmptySpaceItem()
+ Me.LayoutControlItem36 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.LayoutControlItem32 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.LayoutControlItem26 = New DevExpress.XtraLayout.LayoutControlItem()
Me.XtraTabControl2 = New DevExpress.XtraTab.XtraTabControl()
Me.XtraTabPageManIndexe = New DevExpress.XtraTab.XtraTabPage()
Me.LayoutControlManIndexe = New DevExpress.XtraLayout.LayoutControl()
+ Me.TextEdit4 = New DevExpress.XtraEditors.TextEdit()
Me.CONNECTION_IDTextBox = New System.Windows.Forms.TextBox()
Me.SQL_RESULTTextBox = New System.Windows.Forms.TextBox()
Me.WD_INDEXComboBox = New System.Windows.Forms.ComboBox()
@@ -94,12 +95,12 @@ Partial Class frmAdmin_Globix
Me.TextEditAddedWho_ManIndex = New DevExpress.XtraEditors.TextEdit()
Me.TextEdit2 = New DevExpress.XtraEditors.TextEdit()
Me.TextEditChangedWho_ManIndex = New DevExpress.XtraEditors.TextEdit()
- Me.TextEdit9 = New DevExpress.XtraEditors.TextEdit()
+ Me.GUIDTextBoxMANINDEX = New DevExpress.XtraEditors.TextEdit()
Me.TextEdit10 = New DevExpress.XtraEditors.TextEdit()
Me.TextEdit11 = New DevExpress.XtraEditors.TextEdit()
Me.SpinEdit1 = New DevExpress.XtraEditors.SpinEdit()
Me.ComboBoxEdit4 = New DevExpress.XtraEditors.ComboBoxEdit()
- Me.LayoutControlGroup1 = New DevExpress.XtraLayout.LayoutControlGroup()
+ Me.LayoutControlGroupDoctype = New DevExpress.XtraLayout.LayoutControlGroup()
Me.LayoutControlItem17 = New DevExpress.XtraLayout.LayoutControlItem()
Me.LayoutControlItem19 = New DevExpress.XtraLayout.LayoutControlItem()
Me.LayoutControlItem21 = New DevExpress.XtraLayout.LayoutControlItem()
@@ -117,22 +118,26 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem7 = New DevExpress.XtraLayout.LayoutControlItem()
Me.LayoutControlItem31 = New DevExpress.XtraLayout.LayoutControlItem()
Me.LayoutControlItem18 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.EmptySpaceItem6 = New DevExpress.XtraLayout.EmptySpaceItem()
+ Me.LayoutControlItem46 = New DevExpress.XtraLayout.LayoutControlItem()
Me.ListBoxAutoIndexe = New System.Windows.Forms.ListBox()
Me.XtraTabPageRework = New DevExpress.XtraTab.XtraTabPage()
Me.LayoutControlRework = New DevExpress.XtraLayout.LayoutControl()
Me.LayoutControlGroup3 = New DevExpress.XtraLayout.LayoutControlGroup()
Me.XtraTabPageAutoIndexe = New DevExpress.XtraTab.XtraTabPage()
Me.LayoutControlAutoIndexe = New DevExpress.XtraLayout.LayoutControl()
- Me.SQL_RESULTTextBox1 = New System.Windows.Forms.TextBox()
+ Me.ListBox1 = New System.Windows.Forms.ListBox()
Me.TBDD_INDEX_AUTOMBindingSource = New System.Windows.Forms.BindingSource(Me.components)
+ Me.CONNECTION_IDTextBox1 = New System.Windows.Forms.TextBox()
+ Me.SQL_RESULTTextBox1 = New System.Windows.Forms.TextBox()
Me.SQL_ACTIVECheckBox = New System.Windows.Forms.CheckBox()
Me.VALUETextBox = New System.Windows.Forms.TextBox()
Me.INDEXNAMEComboBox = New System.Windows.Forms.ComboBox()
Me.ACTIVECheckBox1 = New System.Windows.Forms.CheckBox()
Me.SEQUENCENumericUpDown1 = New System.Windows.Forms.NumericUpDown()
- Me.GUID_AUTOATTRIBUTETextBox = New System.Windows.Forms.TextBox()
+ Me.GUIDTextBoxAutoAttribute = New System.Windows.Forms.TextBox()
Me.SimpleButton1 = New DevExpress.XtraEditors.SimpleButton()
- Me.ComboBoxEdit1 = New DevExpress.XtraEditors.ComboBoxEdit()
+ Me.ComboBoxEditAAttrFileParam = New DevExpress.XtraEditors.ComboBoxEdit()
Me.SimpleButton2 = New DevExpress.XtraEditors.SimpleButton()
Me.ADDED_WHOTextBoxAutoAttribut = New DevExpress.XtraEditors.TextEdit()
Me.TextEdit3 = New DevExpress.XtraEditors.TextEdit()
@@ -154,18 +159,88 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem41 = New DevExpress.XtraLayout.LayoutControlItem()
Me.CHANGED_WHOItemAutoAttribut = New DevExpress.XtraLayout.LayoutControlItem()
Me.LayoutControlItem43 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.LayoutControlItem45 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.LayoutControlItem44 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.EmptySpaceItem5 = New DevExpress.XtraLayout.EmptySpaceItem()
Me.XtraTabPageDynamicFolder = New DevExpress.XtraTab.XtraTabPage()
+ Me.LayoutControl1 = New DevExpress.XtraLayout.LayoutControl()
+ Me.SimpleButton3 = New DevExpress.XtraEditors.SimpleButton()
+ Me.txtcrFoldermanuell = New DevExpress.XtraEditors.TextEdit()
+ Me.cmbCrFolderDate = New System.Windows.Forms.ComboBox()
+ Me.Label1 = New System.Windows.Forms.Label()
+ Me.FOLDER_FOR_INDEXTextEdit = New DevExpress.XtraEditors.TextEdit()
+ Me.LayoutControlGroup4 = New DevExpress.XtraLayout.LayoutControlGroup()
+ Me.EmptySpaceItem7 = New DevExpress.XtraLayout.EmptySpaceItem()
+ Me.LayoutControlItem48 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.LayoutControlItem50 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.LayoutControlItem51 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.EmptySpaceItem8 = New DevExpress.XtraLayout.EmptySpaceItem()
+ Me.LayoutControlItem52 = New DevExpress.XtraLayout.LayoutControlItem()
Me.XtraTabPageAutoSelect = New DevExpress.XtraTab.XtraTabPage()
+ Me.LayoutControl2 = New DevExpress.XtraLayout.LayoutControl()
+ Me.ChangedWhenAutoSelect = New DevExpress.XtraEditors.TextEdit()
+ Me.TBGI_REGEX_DOCTYPEBindingSource = New System.Windows.Forms.BindingSource(Me.components)
+ Me.TextEdit8 = New DevExpress.XtraEditors.TextEdit()
+ Me.AddedWhoAutoSelect = New DevExpress.XtraEditors.TextEdit()
+ Me.ChangedWhoAutoSelect = New DevExpress.XtraEditors.TextEdit()
+ Me.txtDateinameTest = New System.Windows.Forms.TextBox()
+ Me.SimpleButton4 = New DevExpress.XtraEditors.SimpleButton()
+ Me.REGEXTextBox = New System.Windows.Forms.TextBox()
+ Me.GUIDTextBoxAutoSelect = New System.Windows.Forms.TextBox()
+ Me.LayoutControlGroup5 = New DevExpress.XtraLayout.LayoutControlGroup()
+ Me.LayoutControlItem55 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.EmptySpaceItem9 = New DevExpress.XtraLayout.EmptySpaceItem()
+ Me.EmptySpaceItem10 = New DevExpress.XtraLayout.EmptySpaceItem()
+ Me.LayoutControlItem54 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.LayoutControlItem53 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.EmptySpaceItem11 = New DevExpress.XtraLayout.EmptySpaceItem()
+ Me.LayoutControlItem57 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.LayoutControlItem59 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.LayoutControlItem58 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.LayoutControlItem56 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.LayoutControlItem60 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.ListBox2 = New System.Windows.Forms.ListBox()
+ Me.XtraTabPage1 = New DevExpress.XtraTab.XtraTabPage()
+ Me.XtraTabControl3 = New DevExpress.XtraTab.XtraTabControl()
+ Me.XtraTabPage2 = New DevExpress.XtraTab.XtraTabPage()
+ Me.SplitContainerControl1 = New DevExpress.XtraEditors.SplitContainerControl()
+ Me.gridAssignedUsers = New DevExpress.XtraGrid.GridControl()
+ Me.viewAssignedUsers = New DevExpress.XtraGrid.Views.Grid.GridView()
+ Me.GridColumn1 = New DevExpress.XtraGrid.Columns.GridColumn()
+ Me.GridColumn3 = New DevExpress.XtraGrid.Columns.GridColumn()
+ Me.GridColumn5 = New DevExpress.XtraGrid.Columns.GridColumn()
+ Me.GridColumn4 = New DevExpress.XtraGrid.Columns.GridColumn()
+ Me.Label2 = New System.Windows.Forms.Label()
+ Me.gridAvailableUsers = New DevExpress.XtraGrid.GridControl()
+ Me.viewAvailableUsers = New DevExpress.XtraGrid.Views.Grid.GridView()
+ Me.GridColumn6 = New DevExpress.XtraGrid.Columns.GridColumn()
+ Me.GridColumn7 = New DevExpress.XtraGrid.Columns.GridColumn()
+ Me.GridColumn9 = New DevExpress.XtraGrid.Columns.GridColumn()
+ Me.GridColumn8 = New DevExpress.XtraGrid.Columns.GridColumn()
+ Me.Label35 = New System.Windows.Forms.Label()
+ Me.XtraTabPage3 = New DevExpress.XtraTab.XtraTabPage()
+ Me.SplitContainerControlGroup = New DevExpress.XtraEditors.SplitContainerControl()
+ Me.gridAssignedGroups = New DevExpress.XtraGrid.GridControl()
+ Me.viewAssignedGroups = New DevExpress.XtraGrid.Views.Grid.GridView()
+ Me.colNAME = New DevExpress.XtraGrid.Columns.GridColumn()
+ Me.colGUID = New DevExpress.XtraGrid.Columns.GridColumn()
+ Me.Label13 = New System.Windows.Forms.Label()
+ Me.gridAvailableGroups = New DevExpress.XtraGrid.GridControl()
+ Me.viewAvailableGroups = New DevExpress.XtraGrid.Views.Grid.GridView()
+ Me.colGUID2 = New DevExpress.XtraGrid.Columns.GridColumn()
+ Me.GridColumn2 = New DevExpress.XtraGrid.Columns.GridColumn()
+ Me.Label14 = New System.Windows.Forms.Label()
Me.TBDD_INDEX_MANTableAdapter = New DigitalData.GUIs.ZooFlow.GlobixDatasetTableAdapters.TBDD_INDEX_MANTableAdapter()
Me.VWIDB_OBJECT_STORETableAdapter = New DigitalData.GUIs.ZooFlow.DSIDB_StammdatenTableAdapters.VWIDB_OBJECT_STORETableAdapter()
Me.VWIDB_BE_ATTRIBUTETableAdapter = New DigitalData.GUIs.ZooFlow.DSIDB_StammdatenTableAdapters.VWIDB_BE_ATTRIBUTETableAdapter()
Me.TBDD_INDEX_AUTOMTableAdapter = New DigitalData.GUIs.ZooFlow.GlobixDatasetTableAdapters.TBDD_INDEX_AUTOMTableAdapter()
Me.RadioGroup1 = New DevExpress.XtraEditors.RadioGroup()
Me.LayoutControlItem38 = New DevExpress.XtraLayout.LayoutControlItem()
- Me.CONNECTION_IDTextBox1 = New System.Windows.Forms.TextBox()
- Me.LayoutControlItem45 = New DevExpress.XtraLayout.LayoutControlItem()
- Me.ListBox1 = New System.Windows.Forms.ListBox()
- Me.LayoutControlItem44 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.TBGI_REGEX_DOCTYPETableAdapter = New DigitalData.GUIs.ZooFlow.GlobixDatasetTableAdapters.TBGI_REGEX_DOCTYPETableAdapter()
+ Me.LayoutControlItem47 = New DevExpress.XtraLayout.LayoutControlItem()
+ Me.EmptySpaceItem12 = New DevExpress.XtraLayout.EmptySpaceItem()
+ Me.cmbAllAttributes = New System.Windows.Forms.ComboBox()
+ Me.LayoutControlItem49 = New DevExpress.XtraLayout.LayoutControlItem()
SEQUENCELabel = New System.Windows.Forms.Label()
CType(Me.RibbonControl1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TBDD_DOKUMENTARTBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
@@ -176,6 +251,7 @@ Partial Class frmAdmin_Globix
Me.XtraTabPageProfile.SuspendLayout()
CType(Me.LayoutControlProfile, System.ComponentModel.ISupportInitialize).BeginInit()
Me.LayoutControlProfile.SuspendLayout()
+ CType(Me.TextEdit1.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.VWIDB_OBJECT_STOREBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.SEQUENCENumericUpDown, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TBDD_INDEX_MANBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
@@ -192,33 +268,34 @@ Partial Class frmAdmin_Globix
CType(Me.LayoutControlItem12, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem10, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem3, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.LayoutControlItem32, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem5, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.LayoutControlItem36, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem30, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem20, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.LayoutControlItem26, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem4, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.EmptySpaceItem1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem22, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem25, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.EmptySpaceItem3, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem36, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem32, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem26, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.XtraTabControl2, System.ComponentModel.ISupportInitialize).BeginInit()
Me.XtraTabControl2.SuspendLayout()
Me.XtraTabPageManIndexe.SuspendLayout()
CType(Me.LayoutControlManIndexe, System.ComponentModel.ISupportInitialize).BeginInit()
Me.LayoutControlManIndexe.SuspendLayout()
+ CType(Me.TextEdit4.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.VWIDB_BE_ATTRIBUTEBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TextEditAddedWho_ManIndex.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TextEdit2.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TextEditChangedWho_ManIndex.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.TextEdit9.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.GUIDTextBoxMANINDEX.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TextEdit10.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TextEdit11.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.SpinEdit1.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.ComboBoxEdit4.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.LayoutControlGroup1, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlGroupDoctype, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem17, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem19, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem21, System.ComponentModel.ISupportInitialize).BeginInit()
@@ -236,6 +313,8 @@ Partial Class frmAdmin_Globix
CType(Me.LayoutControlItem7, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem31, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem18, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.EmptySpaceItem6, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem46, System.ComponentModel.ISupportInitialize).BeginInit()
Me.XtraTabPageRework.SuspendLayout()
CType(Me.LayoutControlRework, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlGroup3, System.ComponentModel.ISupportInitialize).BeginInit()
@@ -244,7 +323,7 @@ Partial Class frmAdmin_Globix
Me.LayoutControlAutoIndexe.SuspendLayout()
CType(Me.TBDD_INDEX_AUTOMBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.SEQUENCENumericUpDown1, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.ComboBoxEdit1.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.ComboBoxEditAAttrFileParam.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.ADDED_WHOTextBoxAutoAttribut.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TextEdit3.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.CHANGED_WHOTextEditAutoAttribut.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
@@ -265,10 +344,63 @@ Partial Class frmAdmin_Globix
CType(Me.LayoutControlItem41, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.CHANGED_WHOItemAutoAttribut, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem43, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.RadioGroup1.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.LayoutControlItem38, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem45, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.LayoutControlItem44, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.EmptySpaceItem5, System.ComponentModel.ISupportInitialize).BeginInit()
+ Me.XtraTabPageDynamicFolder.SuspendLayout()
+ CType(Me.LayoutControl1, System.ComponentModel.ISupportInitialize).BeginInit()
+ Me.LayoutControl1.SuspendLayout()
+ CType(Me.txtcrFoldermanuell.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.FOLDER_FOR_INDEXTextEdit.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlGroup4, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.EmptySpaceItem7, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem48, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem50, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem51, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.EmptySpaceItem8, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem52, System.ComponentModel.ISupportInitialize).BeginInit()
+ Me.XtraTabPageAutoSelect.SuspendLayout()
+ CType(Me.LayoutControl2, System.ComponentModel.ISupportInitialize).BeginInit()
+ Me.LayoutControl2.SuspendLayout()
+ CType(Me.ChangedWhenAutoSelect.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.TBGI_REGEX_DOCTYPEBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.TextEdit8.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.AddedWhoAutoSelect.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.ChangedWhoAutoSelect.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlGroup5, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem55, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.EmptySpaceItem9, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.EmptySpaceItem10, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem54, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem53, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.EmptySpaceItem11, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem57, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem59, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem58, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem56, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem60, System.ComponentModel.ISupportInitialize).BeginInit()
+ Me.XtraTabPage1.SuspendLayout()
+ CType(Me.XtraTabControl3, System.ComponentModel.ISupportInitialize).BeginInit()
+ Me.XtraTabControl3.SuspendLayout()
+ Me.XtraTabPage2.SuspendLayout()
+ CType(Me.SplitContainerControl1, System.ComponentModel.ISupportInitialize).BeginInit()
+ Me.SplitContainerControl1.SuspendLayout()
+ CType(Me.gridAssignedUsers, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.viewAssignedUsers, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.gridAvailableUsers, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.viewAvailableUsers, System.ComponentModel.ISupportInitialize).BeginInit()
+ Me.XtraTabPage3.SuspendLayout()
+ CType(Me.SplitContainerControlGroup, System.ComponentModel.ISupportInitialize).BeginInit()
+ Me.SplitContainerControlGroup.SuspendLayout()
+ CType(Me.gridAssignedGroups, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.viewAssignedGroups, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.gridAvailableGroups, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.viewAvailableGroups, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.RadioGroup1.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem38, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem47, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.EmptySpaceItem12, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.LayoutControlItem49, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'SEQUENCELabel
@@ -281,14 +413,14 @@ Partial Class frmAdmin_Globix
'RibbonControl1
'
Me.RibbonControl1.ExpandCollapseItem.Id = 0
- Me.RibbonControl1.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.RibbonControl1.ExpandCollapseItem, Me.RibbonControl1.SearchEditItem, Me.BarButtonSaveExit, Me.BarButtonSave, Me.labelStatus, Me.BarButtonNew, Me.BarButtonItem2})
+ Me.RibbonControl1.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.RibbonControl1.ExpandCollapseItem, Me.RibbonControl1.SearchEditItem, Me.BarButtonSaveExit, Me.BarButtonSave, Me.labelStatus, Me.BarButtonNew, Me.BarButtonItemDelete})
Me.RibbonControl1.Location = New System.Drawing.Point(0, 0)
Me.RibbonControl1.MaxItemId = 8
Me.RibbonControl1.Name = "RibbonControl1"
Me.RibbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPage1})
Me.RibbonControl1.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.[False]
Me.RibbonControl1.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Hide
- Me.RibbonControl1.Size = New System.Drawing.Size(1212, 131)
+ Me.RibbonControl1.Size = New System.Drawing.Size(1140, 131)
Me.RibbonControl1.StatusBar = Me.RibbonStatusBar1
'
'BarButtonSaveExit
@@ -321,12 +453,12 @@ Partial Class frmAdmin_Globix
Me.BarButtonNew.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonNew.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
Me.BarButtonNew.Name = "BarButtonNew"
'
- 'BarButtonItem2
+ 'BarButtonItemDelete
'
- Me.BarButtonItem2.Caption = "Löschen"
- Me.BarButtonItem2.Id = 7
- Me.BarButtonItem2.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem2.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
- Me.BarButtonItem2.Name = "BarButtonItem2"
+ Me.BarButtonItemDelete.Caption = "Löschen"
+ Me.BarButtonItemDelete.Id = 7
+ Me.BarButtonItemDelete.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItemDelete.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
+ Me.BarButtonItemDelete.Name = "BarButtonItemDelete"
'
'RibbonPage1
'
@@ -338,17 +470,17 @@ Partial Class frmAdmin_Globix
'
Me.RibbonPageGroup1.ItemLinks.Add(Me.BarButtonNew)
Me.RibbonPageGroup1.ItemLinks.Add(Me.BarButtonSave)
- Me.RibbonPageGroup1.ItemLinks.Add(Me.BarButtonItem2)
+ Me.RibbonPageGroup1.ItemLinks.Add(Me.BarButtonItemDelete)
Me.RibbonPageGroup1.Name = "RibbonPageGroup1"
Me.RibbonPageGroup1.Text = "Daten"
'
'RibbonStatusBar1
'
Me.RibbonStatusBar1.ItemLinks.Add(Me.labelStatus)
- Me.RibbonStatusBar1.Location = New System.Drawing.Point(0, 765)
+ Me.RibbonStatusBar1.Location = New System.Drawing.Point(0, 754)
Me.RibbonStatusBar1.Name = "RibbonStatusBar1"
Me.RibbonStatusBar1.Ribbon = Me.RibbonControl1
- Me.RibbonStatusBar1.Size = New System.Drawing.Size(1212, 22)
+ Me.RibbonStatusBar1.Size = New System.Drawing.Size(1140, 22)
'
'RibbonPage2
'
@@ -393,6 +525,7 @@ Partial Class frmAdmin_Globix
Me.TableAdapterManager1.TBDD_DOKUMENTARTTableAdapter = Me.TBDD_DOKUMENTARTTableAdapter
Me.TableAdapterManager1.TBDD_INDEX_AUTOMTableAdapter = Nothing
Me.TableAdapterManager1.TBDD_INDEX_MANTableAdapter = Nothing
+ Me.TableAdapterManager1.TBGI_REGEX_DOCTYPETableAdapter = Nothing
Me.TableAdapterManager1.UpdateOrder = DigitalData.GUIs.ZooFlow.GlobixDatasetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete
'
'XtraTabControl1
@@ -401,27 +534,27 @@ Partial Class frmAdmin_Globix
Me.XtraTabControl1.Location = New System.Drawing.Point(0, 131)
Me.XtraTabControl1.Name = "XtraTabControl1"
Me.XtraTabControl1.SelectedTabPage = Me.XtraTabPageProfile
- Me.XtraTabControl1.Size = New System.Drawing.Size(1212, 634)
+ Me.XtraTabControl1.Size = New System.Drawing.Size(1140, 623)
Me.XtraTabControl1.TabIndex = 5
- Me.XtraTabControl1.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.XtraTabPageProfile})
+ Me.XtraTabControl1.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.XtraTabPageProfile, Me.XtraTabPage1})
'
'XtraTabPageProfile
'
Me.XtraTabPageProfile.AutoScroll = True
Me.XtraTabPageProfile.Controls.Add(Me.LayoutControlProfile)
Me.XtraTabPageProfile.Controls.Add(Me.XtraTabControl2)
+ Me.XtraTabPageProfile.ImageOptions.SvgImage = CType(resources.GetObject("XtraTabPageProfile.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
+ Me.XtraTabPageProfile.ImageOptions.SvgImageSize = New System.Drawing.Size(16, 16)
Me.XtraTabPageProfile.Name = "XtraTabPageProfile"
- Me.XtraTabPageProfile.Size = New System.Drawing.Size(1210, 611)
+ Me.XtraTabPageProfile.Size = New System.Drawing.Size(1138, 597)
Me.XtraTabPageProfile.Text = "Profil"
'
'LayoutControlProfile
'
- Me.LayoutControlProfile.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
+ Me.LayoutControlProfile.Controls.Add(Me.TextEdit1)
Me.LayoutControlProfile.Controls.Add(Me.IDB_OBJECT_STORE_IDComboBox)
Me.LayoutControlProfile.Controls.Add(Me.SEQUENCENumericUpDown)
Me.LayoutControlProfile.Controls.Add(Me.AKTIVCheckBox)
- Me.LayoutControlProfile.Controls.Add(Me.ERSTELLTWANNTextBox)
Me.LayoutControlProfile.Controls.Add(Me.GEAENDERTWANNTextBox)
Me.LayoutControlProfile.Controls.Add(Me.TextEditErstelltWer)
Me.LayoutControlProfile.Controls.Add(Me.TextEditGeandertWer)
@@ -432,23 +565,34 @@ Partial Class frmAdmin_Globix
Me.LayoutControlProfile.Controls.Add(Me.TextEditDoctypeID)
Me.LayoutControlProfile.Controls.Add(Me.ComboBoxEditDupl_handling)
Me.LayoutControlProfile.Controls.Add(Me.SimpleButtonNameconvention)
- Me.LayoutControlProfile.Location = New System.Drawing.Point(0, 3)
+ Me.LayoutControlProfile.Location = New System.Drawing.Point(-2, -7)
Me.LayoutControlProfile.Name = "LayoutControlProfile"
Me.LayoutControlProfile.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = New System.Drawing.Rectangle(948, 640, 650, 400)
Me.LayoutControlProfile.Root = Me.Root
- Me.LayoutControlProfile.Size = New System.Drawing.Size(1204, 249)
+ Me.LayoutControlProfile.Size = New System.Drawing.Size(1119, 280)
Me.LayoutControlProfile.TabIndex = 0
Me.LayoutControlProfile.Text = "LayoutControl1"
'
+ 'TextEdit1
+ '
+ Me.TextEdit1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "ERSTELLTWANN", True))
+ Me.TextEdit1.Location = New System.Drawing.Point(157, 226)
+ Me.TextEdit1.MenuManager = Me.RibbonControl1
+ Me.TextEdit1.Name = "TextEdit1"
+ Me.TextEdit1.Size = New System.Drawing.Size(396, 20)
+ Me.TextEdit1.StyleController = Me.LayoutControlProfile
+ Me.TextEdit1.TabIndex = 59
+ '
'IDB_OBJECT_STORE_IDComboBox
'
Me.IDB_OBJECT_STORE_IDComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "IDB_OBJECT_STORE_ID", True))
+ Me.IDB_OBJECT_STORE_IDComboBox.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.TBDD_DOKUMENTARTBindingSource, "FOLDER_FOR_INDEX", True))
Me.IDB_OBJECT_STORE_IDComboBox.DataSource = Me.VWIDB_OBJECT_STOREBindingSource
Me.IDB_OBJECT_STORE_IDComboBox.DisplayMember = "Objectstore"
Me.IDB_OBJECT_STORE_IDComboBox.FormattingEnabled = True
- Me.IDB_OBJECT_STORE_IDComboBox.Location = New System.Drawing.Point(157, 145)
+ Me.IDB_OBJECT_STORE_IDComboBox.Location = New System.Drawing.Point(157, 135)
Me.IDB_OBJECT_STORE_IDComboBox.Name = "IDB_OBJECT_STORE_IDComboBox"
- Me.IDB_OBJECT_STORE_IDComboBox.Size = New System.Drawing.Size(439, 21)
+ Me.IDB_OBJECT_STORE_IDComboBox.Size = New System.Drawing.Size(397, 21)
Me.IDB_OBJECT_STORE_IDComboBox.TabIndex = 57
Me.IDB_OBJECT_STORE_IDComboBox.ValueMember = "GUID"
'
@@ -460,10 +604,10 @@ Partial Class frmAdmin_Globix
'SEQUENCENumericUpDown
'
Me.SEQUENCENumericUpDown.DataBindings.Add(New System.Windows.Forms.Binding("Value", Me.TBDD_INDEX_MANBindingSource, "SEQUENCE", True))
- Me.SEQUENCENumericUpDown.Location = New System.Drawing.Point(373, 15)
+ Me.SEQUENCENumericUpDown.Location = New System.Drawing.Point(390, 15)
Me.SEQUENCENumericUpDown.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
Me.SEQUENCENumericUpDown.Name = "SEQUENCENumericUpDown"
- Me.SEQUENCENumericUpDown.Size = New System.Drawing.Size(47, 22)
+ Me.SEQUENCENumericUpDown.Size = New System.Drawing.Size(46, 22)
Me.SEQUENCENumericUpDown.TabIndex = 56
Me.SEQUENCENumericUpDown.Value = New Decimal(New Integer() {1, 0, 0, 0})
'
@@ -475,48 +619,39 @@ Partial Class frmAdmin_Globix
'AKTIVCheckBox
'
Me.AKTIVCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_DOKUMENTARTBindingSource, "AKTIV", True))
- Me.AKTIVCheckBox.Location = New System.Drawing.Point(427, 12)
+ Me.AKTIVCheckBox.Location = New System.Drawing.Point(443, 12)
Me.AKTIVCheckBox.Name = "AKTIVCheckBox"
- Me.AKTIVCheckBox.Size = New System.Drawing.Size(322, 20)
+ Me.AKTIVCheckBox.Size = New System.Drawing.Size(278, 20)
Me.AKTIVCheckBox.TabIndex = 25
Me.AKTIVCheckBox.Text = "Aktiv"
Me.AKTIVCheckBox.UseVisualStyleBackColor = True
'
- 'ERSTELLTWANNTextBox
- '
- Me.ERSTELLTWANNTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "ERSTELLTWANN", True))
- Me.ERSTELLTWANNTextBox.Location = New System.Drawing.Point(157, 206)
- Me.ERSTELLTWANNTextBox.Name = "ERSTELLTWANNTextBox"
- Me.ERSTELLTWANNTextBox.ReadOnly = True
- Me.ERSTELLTWANNTextBox.Size = New System.Drawing.Size(537, 20)
- Me.ERSTELLTWANNTextBox.TabIndex = 35
- '
'GEAENDERTWANNTextBox
'
Me.GEAENDERTWANNTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "GEAENDERTWANN", True))
- Me.GEAENDERTWANNTextBox.Location = New System.Drawing.Point(846, 206)
+ Me.GEAENDERTWANNTextBox.Location = New System.Drawing.Point(705, 226)
Me.GEAENDERTWANNTextBox.Name = "GEAENDERTWANNTextBox"
Me.GEAENDERTWANNTextBox.ReadOnly = True
- Me.GEAENDERTWANNTextBox.Size = New System.Drawing.Size(343, 20)
+ Me.GEAENDERTWANNTextBox.Size = New System.Drawing.Size(399, 20)
Me.GEAENDERTWANNTextBox.TabIndex = 39
'
'TextEditErstelltWer
'
Me.TextEditErstelltWer.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "ERSTELLTWER", True))
- Me.TextEditErstelltWer.Location = New System.Drawing.Point(157, 176)
+ Me.TextEditErstelltWer.Location = New System.Drawing.Point(157, 196)
Me.TextEditErstelltWer.MenuManager = Me.RibbonControl1
Me.TextEditErstelltWer.Name = "TextEditErstelltWer"
- Me.TextEditErstelltWer.Size = New System.Drawing.Size(537, 20)
+ Me.TextEditErstelltWer.Size = New System.Drawing.Size(396, 20)
Me.TextEditErstelltWer.StyleController = Me.LayoutControlProfile
Me.TextEditErstelltWer.TabIndex = 44
'
'TextEditGeandertWer
'
Me.TextEditGeandertWer.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "GEANDERTWER", True))
- Me.TextEditGeandertWer.Location = New System.Drawing.Point(846, 176)
+ Me.TextEditGeandertWer.Location = New System.Drawing.Point(705, 196)
Me.TextEditGeandertWer.MenuManager = Me.RibbonControl1
Me.TextEditGeandertWer.Name = "TextEditGeandertWer"
- Me.TextEditGeandertWer.Size = New System.Drawing.Size(343, 20)
+ Me.TextEditGeandertWer.Size = New System.Drawing.Size(399, 20)
Me.TextEditGeandertWer.StyleController = Me.LayoutControlProfile
Me.TextEditGeandertWer.TabIndex = 45
'
@@ -526,27 +661,27 @@ Partial Class frmAdmin_Globix
Me.TextEditNamenkonvention.Location = New System.Drawing.Point(157, 105)
Me.TextEditNamenkonvention.MenuManager = Me.RibbonControl1
Me.TextEditNamenkonvention.Name = "TextEditNamenkonvention"
- Me.TextEditNamenkonvention.Size = New System.Drawing.Size(537, 20)
+ Me.TextEditNamenkonvention.Size = New System.Drawing.Size(396, 20)
Me.TextEditNamenkonvention.StyleController = Me.LayoutControlProfile
Me.TextEditNamenkonvention.TabIndex = 46
'
'TextEditBeschreibung
'
Me.TextEditBeschreibung.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "BESCHREIBUNG", True))
- Me.TextEditBeschreibung.Location = New System.Drawing.Point(157, 75)
+ Me.TextEditBeschreibung.Location = New System.Drawing.Point(157, 166)
Me.TextEditBeschreibung.MenuManager = Me.RibbonControl1
Me.TextEditBeschreibung.Name = "TextEditBeschreibung"
- Me.TextEditBeschreibung.Size = New System.Drawing.Size(1032, 20)
+ Me.TextEditBeschreibung.Size = New System.Drawing.Size(947, 20)
Me.TextEditBeschreibung.StyleController = Me.LayoutControlProfile
Me.TextEditBeschreibung.TabIndex = 48
'
'TextEditKurzname
'
Me.TextEditKurzname.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "KURZNAME", True))
- Me.TextEditKurzname.Location = New System.Drawing.Point(898, 45)
+ Me.TextEditKurzname.Location = New System.Drawing.Point(844, 45)
Me.TextEditKurzname.MenuManager = Me.RibbonControl1
Me.TextEditKurzname.Name = "TextEditKurzname"
- Me.TextEditKurzname.Size = New System.Drawing.Size(291, 20)
+ Me.TextEditKurzname.Size = New System.Drawing.Size(260, 20)
Me.TextEditKurzname.StyleController = Me.LayoutControlProfile
Me.TextEditKurzname.TabIndex = 50
'
@@ -556,7 +691,7 @@ Partial Class frmAdmin_Globix
Me.TextEditBezeichnung.Location = New System.Drawing.Point(157, 45)
Me.TextEditBezeichnung.MenuManager = Me.RibbonControl1
Me.TextEditBezeichnung.Name = "TextEditBezeichnung"
- Me.TextEditBezeichnung.Size = New System.Drawing.Size(589, 20)
+ Me.TextEditBezeichnung.Size = New System.Drawing.Size(535, 20)
Me.TextEditBezeichnung.StyleController = Me.LayoutControlProfile
Me.TextEditBezeichnung.TabIndex = 51
'
@@ -566,28 +701,29 @@ Partial Class frmAdmin_Globix
Me.TextEditDoctypeID.Location = New System.Drawing.Point(157, 15)
Me.TextEditDoctypeID.MenuManager = Me.RibbonControl1
Me.TextEditDoctypeID.Name = "TextEditDoctypeID"
- Me.TextEditDoctypeID.Size = New System.Drawing.Size(64, 20)
+ Me.TextEditDoctypeID.Size = New System.Drawing.Size(81, 20)
Me.TextEditDoctypeID.StyleController = Me.LayoutControlProfile
Me.TextEditDoctypeID.TabIndex = 52
'
'ComboBoxEditDupl_handling
'
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(934, 105)
+ Me.ComboBoxEditDupl_handling.Location = New System.Drawing.Point(157, 75)
Me.ComboBoxEditDupl_handling.MenuManager = Me.RibbonControl1
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.Items.AddRange(New Object() {"New version", "Default", "Question"})
- Me.ComboBoxEditDupl_handling.Size = New System.Drawing.Size(255, 20)
+ Me.ComboBoxEditDupl_handling.Size = New System.Drawing.Size(947, 20)
Me.ComboBoxEditDupl_handling.StyleController = Me.LayoutControlProfile
Me.ComboBoxEditDupl_handling.TabIndex = 54
'
'SimpleButtonNameconvention
'
Me.SimpleButtonNameconvention.ImageOptions.SvgImage = CType(resources.GetObject("SimpleButtonNameconvention.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
- Me.SimpleButtonNameconvention.Location = New System.Drawing.Point(701, 102)
+ Me.SimpleButtonNameconvention.ImageOptions.SvgImageSize = New System.Drawing.Size(16, 16)
+ Me.SimpleButtonNameconvention.Location = New System.Drawing.Point(560, 102)
Me.SimpleButtonNameconvention.Name = "SimpleButtonNameconvention"
- Me.SimpleButtonNameconvention.Size = New System.Drawing.Size(84, 36)
+ Me.SimpleButtonNameconvention.Size = New System.Drawing.Size(547, 22)
Me.SimpleButtonNameconvention.StyleController = Me.LayoutControlProfile
Me.SimpleButtonNameconvention.TabIndex = 58
Me.SimpleButtonNameconvention.Text = "Editor"
@@ -596,28 +732,28 @@ Partial Class frmAdmin_Globix
'
Me.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
Me.Root.GroupBordersVisible = False
- Me.Root.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem28, Me.LayoutControlItem12, Me.LayoutControlItem10, Me.LayoutControlItem3, Me.LayoutControlItem32, Me.LayoutControlItem5, Me.LayoutControlItem36, Me.LayoutControlItem30, Me.LayoutControlItem20, Me.LayoutControlItem26, Me.LayoutControlItem4, Me.EmptySpaceItem1, Me.LayoutControlItem22, Me.LayoutControlItem1, Me.LayoutControlItem25, Me.EmptySpaceItem3})
+ Me.Root.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem12, Me.LayoutControlItem10, Me.LayoutControlItem3, Me.LayoutControlItem30, Me.LayoutControlItem20, Me.LayoutControlItem4, Me.EmptySpaceItem1, Me.LayoutControlItem22, Me.LayoutControlItem25, Me.EmptySpaceItem3, Me.LayoutControlItem26, Me.LayoutControlItem1, Me.LayoutControlItem32, Me.LayoutControlItem5, Me.LayoutControlItem36, Me.LayoutControlItem28, Me.EmptySpaceItem12})
Me.Root.Name = "Root"
- Me.Root.Size = New System.Drawing.Size(1204, 249)
+ Me.Root.Size = New System.Drawing.Size(1119, 280)
Me.Root.TextVisible = False
'
'LayoutControlItem28
'
Me.LayoutControlItem28.Control = Me.TextEditBeschreibung
- Me.LayoutControlItem28.Location = New System.Drawing.Point(0, 60)
+ Me.LayoutControlItem28.Location = New System.Drawing.Point(0, 151)
Me.LayoutControlItem28.Name = "LayoutControlItem28"
Me.LayoutControlItem28.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem28.Size = New System.Drawing.Size(1184, 30)
+ Me.LayoutControlItem28.Size = New System.Drawing.Size(1099, 30)
Me.LayoutControlItem28.Text = "Beschreibung"
Me.LayoutControlItem28.TextSize = New System.Drawing.Size(139, 13)
'
'LayoutControlItem12
'
Me.LayoutControlItem12.Control = Me.TextEditKurzname
- Me.LayoutControlItem12.Location = New System.Drawing.Point(741, 30)
+ Me.LayoutControlItem12.Location = New System.Drawing.Point(687, 30)
Me.LayoutControlItem12.Name = "LayoutControlItem12"
Me.LayoutControlItem12.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem12.Size = New System.Drawing.Size(443, 30)
+ Me.LayoutControlItem12.Size = New System.Drawing.Size(412, 30)
Me.LayoutControlItem12.Text = "Kurzname"
Me.LayoutControlItem12.TextSize = New System.Drawing.Size(139, 13)
'
@@ -627,7 +763,7 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem10.Location = New System.Drawing.Point(0, 30)
Me.LayoutControlItem10.Name = "LayoutControlItem10"
Me.LayoutControlItem10.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem10.Size = New System.Drawing.Size(741, 30)
+ Me.LayoutControlItem10.Size = New System.Drawing.Size(687, 30)
Me.LayoutControlItem10.Text = "Bezeichnung"
Me.LayoutControlItem10.TextSize = New System.Drawing.Size(139, 13)
'
@@ -637,59 +773,33 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem3.AppearanceItemCaption.Options.UseFont = True
Me.LayoutControlItem3.Control = Me.TextEditErstelltWer
Me.LayoutControlItem3.Enabled = False
- Me.LayoutControlItem3.Location = New System.Drawing.Point(0, 161)
+ Me.LayoutControlItem3.Location = New System.Drawing.Point(0, 181)
Me.LayoutControlItem3.Name = "LayoutControlItem3"
Me.LayoutControlItem3.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem3.Size = New System.Drawing.Size(689, 30)
+ Me.LayoutControlItem3.Size = New System.Drawing.Size(548, 30)
Me.LayoutControlItem3.Text = "Erstellt wer"
Me.LayoutControlItem3.TextSize = New System.Drawing.Size(139, 13)
'
- 'LayoutControlItem32
- '
- Me.LayoutControlItem32.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.LayoutControlItem32.AppearanceItemCaption.Options.UseFont = True
- Me.LayoutControlItem32.Control = Me.ERSTELLTWANNTextBox
- Me.LayoutControlItem32.Enabled = False
- Me.LayoutControlItem32.Location = New System.Drawing.Point(0, 191)
- Me.LayoutControlItem32.Name = "LayoutControlItem32"
- Me.LayoutControlItem32.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem32.Size = New System.Drawing.Size(689, 38)
- Me.LayoutControlItem32.Text = "Erstellt wann:"
- Me.LayoutControlItem32.TextSize = New System.Drawing.Size(139, 13)
- '
'LayoutControlItem5
'
Me.LayoutControlItem5.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.LayoutControlItem5.AppearanceItemCaption.Options.UseFont = True
Me.LayoutControlItem5.Control = Me.TextEditGeandertWer
Me.LayoutControlItem5.Enabled = False
- Me.LayoutControlItem5.Location = New System.Drawing.Point(689, 161)
+ Me.LayoutControlItem5.Location = New System.Drawing.Point(548, 181)
Me.LayoutControlItem5.Name = "LayoutControlItem5"
Me.LayoutControlItem5.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem5.Size = New System.Drawing.Size(495, 30)
+ Me.LayoutControlItem5.Size = New System.Drawing.Size(551, 30)
Me.LayoutControlItem5.Text = "Geändert wer"
Me.LayoutControlItem5.TextSize = New System.Drawing.Size(139, 13)
'
- 'LayoutControlItem36
- '
- Me.LayoutControlItem36.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.LayoutControlItem36.AppearanceItemCaption.Options.UseFont = True
- Me.LayoutControlItem36.Control = Me.GEAENDERTWANNTextBox
- Me.LayoutControlItem36.Enabled = False
- Me.LayoutControlItem36.Location = New System.Drawing.Point(689, 191)
- Me.LayoutControlItem36.Name = "LayoutControlItem36"
- Me.LayoutControlItem36.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem36.Size = New System.Drawing.Size(495, 38)
- Me.LayoutControlItem36.Text = "Geändert wann:"
- Me.LayoutControlItem36.TextSize = New System.Drawing.Size(139, 13)
- '
'LayoutControlItem30
'
Me.LayoutControlItem30.Control = Me.TextEditNamenkonvention
Me.LayoutControlItem30.Location = New System.Drawing.Point(0, 90)
Me.LayoutControlItem30.Name = "LayoutControlItem30"
Me.LayoutControlItem30.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem30.Size = New System.Drawing.Size(689, 40)
+ Me.LayoutControlItem30.Size = New System.Drawing.Size(548, 30)
Me.LayoutControlItem30.Text = "Namenkonvention"
Me.LayoutControlItem30.TextSize = New System.Drawing.Size(139, 13)
'
@@ -697,88 +807,116 @@ Partial Class frmAdmin_Globix
'
Me.LayoutControlItem20.Control = Me.SEQUENCENumericUpDown
Me.LayoutControlItem20.CustomizationFormText = "SEQUENCE"
- Me.LayoutControlItem20.Location = New System.Drawing.Point(216, 0)
+ Me.LayoutControlItem20.Location = New System.Drawing.Point(233, 0)
Me.LayoutControlItem20.Name = "LayoutControlItem20"
Me.LayoutControlItem20.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem20.Size = New System.Drawing.Size(199, 30)
+ Me.LayoutControlItem20.Size = New System.Drawing.Size(198, 30)
Me.LayoutControlItem20.Text = "Reihenfolge"
Me.LayoutControlItem20.TextSize = New System.Drawing.Size(139, 13)
'
- 'LayoutControlItem26
- '
- Me.LayoutControlItem26.Control = Me.ComboBoxEditDupl_handling
- Me.LayoutControlItem26.Location = New System.Drawing.Point(777, 90)
- Me.LayoutControlItem26.Name = "LayoutControlItem26"
- Me.LayoutControlItem26.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem26.Size = New System.Drawing.Size(407, 40)
- Me.LayoutControlItem26.Text = "Verhalten Datei vorhanden"
- Me.LayoutControlItem26.TextSize = New System.Drawing.Size(139, 13)
- '
'LayoutControlItem4
'
- Me.LayoutControlItem4.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem4.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI Semibold", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.LayoutControlItem4.AppearanceItemCaption.Options.UseFont = True
Me.LayoutControlItem4.Control = Me.TextEditDoctypeID
Me.LayoutControlItem4.Location = New System.Drawing.Point(0, 0)
Me.LayoutControlItem4.Name = "LayoutControlItem4"
Me.LayoutControlItem4.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem4.Size = New System.Drawing.Size(216, 30)
+ Me.LayoutControlItem4.Size = New System.Drawing.Size(233, 30)
Me.LayoutControlItem4.Text = "ID"
Me.LayoutControlItem4.TextSize = New System.Drawing.Size(139, 13)
'
'EmptySpaceItem1
'
Me.EmptySpaceItem1.AllowHotTrack = False
- Me.EmptySpaceItem1.Location = New System.Drawing.Point(741, 0)
+ Me.EmptySpaceItem1.Location = New System.Drawing.Point(713, 0)
Me.EmptySpaceItem1.Name = "EmptySpaceItem1"
- Me.EmptySpaceItem1.Size = New System.Drawing.Size(443, 30)
+ Me.EmptySpaceItem1.Size = New System.Drawing.Size(386, 30)
Me.EmptySpaceItem1.TextSize = New System.Drawing.Size(0, 0)
'
'LayoutControlItem22
'
Me.LayoutControlItem22.Control = Me.AKTIVCheckBox
- Me.LayoutControlItem22.Location = New System.Drawing.Point(415, 0)
+ Me.LayoutControlItem22.Location = New System.Drawing.Point(431, 0)
Me.LayoutControlItem22.Name = "LayoutControlItem22"
- Me.LayoutControlItem22.Size = New System.Drawing.Size(326, 30)
+ Me.LayoutControlItem22.Size = New System.Drawing.Size(282, 30)
Me.LayoutControlItem22.TextSize = New System.Drawing.Size(0, 0)
Me.LayoutControlItem22.TextVisible = False
'
'LayoutControlItem1
'
Me.LayoutControlItem1.Control = Me.SimpleButtonNameconvention
- Me.LayoutControlItem1.Location = New System.Drawing.Point(689, 90)
+ Me.LayoutControlItem1.Location = New System.Drawing.Point(548, 90)
Me.LayoutControlItem1.Name = "LayoutControlItem1"
- Me.LayoutControlItem1.Size = New System.Drawing.Size(88, 40)
+ Me.LayoutControlItem1.Size = New System.Drawing.Size(551, 30)
Me.LayoutControlItem1.TextSize = New System.Drawing.Size(0, 0)
Me.LayoutControlItem1.TextVisible = False
'
'LayoutControlItem25
'
+ Me.LayoutControlItem25.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem25.AppearanceItemCaption.Options.UseFont = True
Me.LayoutControlItem25.Control = Me.IDB_OBJECT_STORE_IDComboBox
- Me.LayoutControlItem25.Location = New System.Drawing.Point(0, 130)
+ Me.LayoutControlItem25.Location = New System.Drawing.Point(0, 120)
Me.LayoutControlItem25.Name = "LayoutControlItem25"
Me.LayoutControlItem25.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem25.Size = New System.Drawing.Size(591, 31)
+ Me.LayoutControlItem25.Size = New System.Drawing.Size(549, 31)
Me.LayoutControlItem25.Text = "File-Store:"
Me.LayoutControlItem25.TextSize = New System.Drawing.Size(139, 13)
'
'EmptySpaceItem3
'
Me.EmptySpaceItem3.AllowHotTrack = False
- Me.EmptySpaceItem3.Location = New System.Drawing.Point(591, 130)
+ Me.EmptySpaceItem3.Location = New System.Drawing.Point(0, 241)
Me.EmptySpaceItem3.Name = "EmptySpaceItem3"
- Me.EmptySpaceItem3.Size = New System.Drawing.Size(593, 31)
+ Me.EmptySpaceItem3.Size = New System.Drawing.Size(1099, 19)
Me.EmptySpaceItem3.TextSize = New System.Drawing.Size(0, 0)
'
+ 'LayoutControlItem36
+ '
+ Me.LayoutControlItem36.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem36.AppearanceItemCaption.Options.UseFont = True
+ Me.LayoutControlItem36.Control = Me.GEAENDERTWANNTextBox
+ Me.LayoutControlItem36.Enabled = False
+ Me.LayoutControlItem36.Location = New System.Drawing.Point(548, 211)
+ Me.LayoutControlItem36.Name = "LayoutControlItem36"
+ Me.LayoutControlItem36.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem36.Size = New System.Drawing.Size(551, 30)
+ Me.LayoutControlItem36.Text = "Geändert wann:"
+ Me.LayoutControlItem36.TextSize = New System.Drawing.Size(139, 13)
+ '
+ 'LayoutControlItem32
+ '
+ Me.LayoutControlItem32.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem32.AppearanceItemCaption.Options.UseFont = True
+ Me.LayoutControlItem32.Control = Me.TextEdit1
+ Me.LayoutControlItem32.Enabled = False
+ Me.LayoutControlItem32.Location = New System.Drawing.Point(0, 211)
+ Me.LayoutControlItem32.Name = "LayoutControlItem32"
+ Me.LayoutControlItem32.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem32.Size = New System.Drawing.Size(548, 30)
+ Me.LayoutControlItem32.Text = "Erstellt wann"
+ Me.LayoutControlItem32.TextSize = New System.Drawing.Size(139, 13)
+ '
+ 'LayoutControlItem26
+ '
+ Me.LayoutControlItem26.Control = Me.ComboBoxEditDupl_handling
+ Me.LayoutControlItem26.Location = New System.Drawing.Point(0, 60)
+ Me.LayoutControlItem26.Name = "LayoutControlItem26"
+ Me.LayoutControlItem26.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem26.Size = New System.Drawing.Size(1099, 30)
+ Me.LayoutControlItem26.Text = "Verhalten Datei vorhanden"
+ Me.LayoutControlItem26.TextSize = New System.Drawing.Size(139, 13)
+ '
'XtraTabControl2
'
Me.XtraTabControl2.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.XtraTabControl2.Location = New System.Drawing.Point(12, 258)
+ Me.XtraTabControl2.Location = New System.Drawing.Point(3, 279)
Me.XtraTabControl2.Name = "XtraTabControl2"
Me.XtraTabControl2.SelectedTabPage = Me.XtraTabPageManIndexe
- Me.XtraTabControl2.Size = New System.Drawing.Size(1180, 353)
+ Me.XtraTabControl2.Size = New System.Drawing.Size(1113, 298)
Me.XtraTabControl2.TabIndex = 1
Me.XtraTabControl2.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.XtraTabPageManIndexe, Me.XtraTabPageRework, Me.XtraTabPageAutoIndexe, Me.XtraTabPageDynamicFolder, Me.XtraTabPageAutoSelect})
'
@@ -790,11 +928,12 @@ Partial Class frmAdmin_Globix
Me.XtraTabPageManIndexe.ImageOptions.SvgImage = CType(resources.GetObject("XtraTabPageManIndexe.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
Me.XtraTabPageManIndexe.ImageOptions.SvgImageSize = New System.Drawing.Size(16, 16)
Me.XtraTabPageManIndexe.Name = "XtraTabPageManIndexe"
- Me.XtraTabPageManIndexe.Size = New System.Drawing.Size(1178, 327)
+ Me.XtraTabPageManIndexe.Size = New System.Drawing.Size(1111, 272)
Me.XtraTabPageManIndexe.Text = "manuelle Attribute"
'
'LayoutControlManIndexe
'
+ Me.LayoutControlManIndexe.Controls.Add(Me.TextEdit4)
Me.LayoutControlManIndexe.Controls.Add(Me.CONNECTION_IDTextBox)
Me.LayoutControlManIndexe.Controls.Add(Me.SQL_RESULTTextBox)
Me.LayoutControlManIndexe.Controls.Add(Me.WD_INDEXComboBox)
@@ -806,7 +945,7 @@ Partial Class frmAdmin_Globix
Me.LayoutControlManIndexe.Controls.Add(Me.TextEditAddedWho_ManIndex)
Me.LayoutControlManIndexe.Controls.Add(Me.TextEdit2)
Me.LayoutControlManIndexe.Controls.Add(Me.TextEditChangedWho_ManIndex)
- Me.LayoutControlManIndexe.Controls.Add(Me.TextEdit9)
+ Me.LayoutControlManIndexe.Controls.Add(Me.GUIDTextBoxMANINDEX)
Me.LayoutControlManIndexe.Controls.Add(Me.TextEdit10)
Me.LayoutControlManIndexe.Controls.Add(Me.TextEdit11)
Me.LayoutControlManIndexe.Controls.Add(Me.SpinEdit1)
@@ -814,17 +953,27 @@ Partial Class frmAdmin_Globix
Me.LayoutControlManIndexe.Dock = System.Windows.Forms.DockStyle.Fill
Me.LayoutControlManIndexe.Location = New System.Drawing.Point(191, 0)
Me.LayoutControlManIndexe.Name = "LayoutControlManIndexe"
- Me.LayoutControlManIndexe.Root = Me.LayoutControlGroup1
- Me.LayoutControlManIndexe.Size = New System.Drawing.Size(987, 327)
+ Me.LayoutControlManIndexe.Root = Me.LayoutControlGroupDoctype
+ Me.LayoutControlManIndexe.Size = New System.Drawing.Size(920, 272)
Me.LayoutControlManIndexe.TabIndex = 1
Me.LayoutControlManIndexe.Text = "LayoutControl1"
'
+ 'TextEdit4
+ '
+ Me.TextEdit4.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "CHANGED_WHEN", True))
+ Me.TextEdit4.Location = New System.Drawing.Point(495, 237)
+ Me.TextEdit4.MenuManager = Me.RibbonControl1
+ Me.TextEdit4.Name = "TextEdit4"
+ Me.TextEdit4.Size = New System.Drawing.Size(410, 20)
+ Me.TextEdit4.StyleController = Me.LayoutControlManIndexe
+ Me.TextEdit4.TabIndex = 31
+ '
'CONNECTION_IDTextBox
'
Me.CONNECTION_IDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "CONNECTION_ID", True))
- Me.CONNECTION_IDTextBox.Location = New System.Drawing.Point(81, 168)
+ Me.CONNECTION_IDTextBox.Location = New System.Drawing.Point(88, 168)
Me.CONNECTION_IDTextBox.Name = "CONNECTION_IDTextBox"
- Me.CONNECTION_IDTextBox.Size = New System.Drawing.Size(35, 20)
+ Me.CONNECTION_IDTextBox.Size = New System.Drawing.Size(21, 20)
Me.CONNECTION_IDTextBox.TabIndex = 30
'
'SQL_RESULTTextBox
@@ -832,7 +981,7 @@ Partial Class frmAdmin_Globix
Me.SQL_RESULTTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "SQL_RESULT", True))
Me.SQL_RESULTTextBox.Location = New System.Drawing.Point(189, 168)
Me.SQL_RESULTTextBox.Name = "SQL_RESULTTextBox"
- Me.SQL_RESULTTextBox.Size = New System.Drawing.Size(786, 20)
+ Me.SQL_RESULTTextBox.Size = New System.Drawing.Size(719, 20)
Me.SQL_RESULTTextBox.TabIndex = 29
'
'WD_INDEXComboBox
@@ -841,9 +990,9 @@ Partial Class frmAdmin_Globix
Me.WD_INDEXComboBox.DataSource = Me.VWIDB_BE_ATTRIBUTEBindingSource
Me.WD_INDEXComboBox.DisplayMember = "ATTR_TITLE"
Me.WD_INDEXComboBox.FormattingEnabled = True
- Me.WD_INDEXComboBox.Location = New System.Drawing.Point(553, 42)
+ Me.WD_INDEXComboBox.Location = New System.Drawing.Point(527, 42)
Me.WD_INDEXComboBox.Name = "WD_INDEXComboBox"
- Me.WD_INDEXComboBox.Size = New System.Drawing.Size(422, 21)
+ Me.WD_INDEXComboBox.Size = New System.Drawing.Size(381, 21)
Me.WD_INDEXComboBox.TabIndex = 28
Me.WD_INDEXComboBox.ValueMember = "ATTR_TITLE"
'
@@ -855,9 +1004,9 @@ Partial Class frmAdmin_Globix
'VKT_ADD_ITEMCheckBox
'
Me.VKT_ADD_ITEMCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_INDEX_MANBindingSource, "VKT_ADD_ITEM", True))
- Me.VKT_ADD_ITEMCheckBox.Location = New System.Drawing.Point(691, 102)
+ Me.VKT_ADD_ITEMCheckBox.Location = New System.Drawing.Point(644, 102)
Me.VKT_ADD_ITEMCheckBox.Name = "VKT_ADD_ITEMCheckBox"
- Me.VKT_ADD_ITEMCheckBox.Size = New System.Drawing.Size(284, 20)
+ Me.VKT_ADD_ITEMCheckBox.Size = New System.Drawing.Size(264, 20)
Me.VKT_ADD_ITEMCheckBox.TabIndex = 14
Me.VKT_ADD_ITEMCheckBox.Text = "Neueingabe erlauben"
Me.VKT_ADD_ITEMCheckBox.UseVisualStyleBackColor = True
@@ -865,9 +1014,9 @@ Partial Class frmAdmin_Globix
'VKT_PREVENT_MULTIPLE_VALUESCheckBox
'
Me.VKT_PREVENT_MULTIPLE_VALUESCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_INDEX_MANBindingSource, "VKT_PREVENT_MULTIPLE_VALUES", True))
- Me.VKT_PREVENT_MULTIPLE_VALUESCheckBox.Location = New System.Drawing.Point(485, 102)
+ Me.VKT_PREVENT_MULTIPLE_VALUESCheckBox.Location = New System.Drawing.Point(452, 102)
Me.VKT_PREVENT_MULTIPLE_VALUESCheckBox.Name = "VKT_PREVENT_MULTIPLE_VALUESCheckBox"
- Me.VKT_PREVENT_MULTIPLE_VALUESCheckBox.Size = New System.Drawing.Size(202, 20)
+ Me.VKT_PREVENT_MULTIPLE_VALUESCheckBox.Size = New System.Drawing.Size(188, 20)
Me.VKT_PREVENT_MULTIPLE_VALUESCheckBox.TabIndex = 13
Me.VKT_PREVENT_MULTIPLE_VALUESCheckBox.Text = "Doppelte Einträge verhindern"
Me.VKT_PREVENT_MULTIPLE_VALUESCheckBox.UseVisualStyleBackColor = True
@@ -875,9 +1024,9 @@ Partial Class frmAdmin_Globix
'MULTISELECTCheckBox
'
Me.MULTISELECTCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_INDEX_MANBindingSource, "MULTISELECT", True))
- Me.MULTISELECTCheckBox.Location = New System.Drawing.Point(252, 102)
+ Me.MULTISELECTCheckBox.Location = New System.Drawing.Point(235, 102)
Me.MULTISELECTCheckBox.Name = "MULTISELECTCheckBox"
- Me.MULTISELECTCheckBox.Size = New System.Drawing.Size(229, 20)
+ Me.MULTISELECTCheckBox.Size = New System.Drawing.Size(213, 20)
Me.MULTISELECTCheckBox.TabIndex = 12
Me.MULTISELECTCheckBox.Text = "Mehrfachauswahl"
Me.MULTISELECTCheckBox.UseVisualStyleBackColor = True
@@ -885,9 +1034,9 @@ Partial Class frmAdmin_Globix
'ACTIVECheckBox
'
Me.ACTIVECheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_INDEX_MANBindingSource, "ACTIVE", True))
- Me.ACTIVECheckBox.Location = New System.Drawing.Point(290, 12)
+ Me.ACTIVECheckBox.Location = New System.Drawing.Point(284, 12)
Me.ACTIVECheckBox.Name = "ACTIVECheckBox"
- Me.ACTIVECheckBox.Size = New System.Drawing.Size(99, 20)
+ Me.ACTIVECheckBox.Size = New System.Drawing.Size(90, 20)
Me.ACTIVECheckBox.TabIndex = 5
Me.ACTIVECheckBox.Text = "Aktiv"
Me.ACTIVECheckBox.UseVisualStyleBackColor = True
@@ -899,7 +1048,7 @@ Partial Class frmAdmin_Globix
Me.btneditSQLmanIndex.Location = New System.Drawing.Point(12, 132)
Me.btneditSQLmanIndex.Name = "btneditSQLmanIndex"
Me.btneditSQLmanIndex.Padding = New System.Windows.Forms.Padding(5)
- Me.btneditSQLmanIndex.Size = New System.Drawing.Size(963, 32)
+ Me.btneditSQLmanIndex.Size = New System.Drawing.Size(896, 32)
Me.btneditSQLmanIndex.StyleController = Me.LayoutControlManIndexe
Me.btneditSQLmanIndex.TabIndex = 16
Me.btneditSQLmanIndex.Text = "SQL Auswahlliste bearbeiten"
@@ -908,60 +1057,60 @@ Partial Class frmAdmin_Globix
'
Me.TextEditAddedWho_ManIndex.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "ADDED_WHO", True))
Me.TextEditAddedWho_ManIndex.Enabled = False
- Me.TextEditAddedWho_ManIndex.Location = New System.Drawing.Point(84, 195)
+ Me.TextEditAddedWho_ManIndex.Location = New System.Drawing.Point(91, 207)
Me.TextEditAddedWho_ManIndex.MenuManager = Me.RibbonControl1
Me.TextEditAddedWho_ManIndex.Name = "TextEditAddedWho_ManIndex"
- Me.TextEditAddedWho_ManIndex.Size = New System.Drawing.Size(355, 20)
+ Me.TextEditAddedWho_ManIndex.Size = New System.Drawing.Size(318, 20)
Me.TextEditAddedWho_ManIndex.StyleController = Me.LayoutControlManIndexe
Me.TextEditAddedWho_ManIndex.TabIndex = 18
'
'TextEdit2
'
Me.TextEdit2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "ADDED_WHEN", True))
- Me.TextEdit2.Location = New System.Drawing.Point(84, 225)
+ Me.TextEdit2.Location = New System.Drawing.Point(91, 237)
Me.TextEdit2.MenuManager = Me.RibbonControl1
Me.TextEdit2.Name = "TextEdit2"
- Me.TextEdit2.Size = New System.Drawing.Size(888, 20)
+ Me.TextEdit2.Size = New System.Drawing.Size(318, 20)
Me.TextEdit2.StyleController = Me.LayoutControlManIndexe
Me.TextEdit2.TabIndex = 19
'
'TextEditChangedWho_ManIndex
'
Me.TextEditChangedWho_ManIndex.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "CHANGED_WHO", True))
- Me.TextEditChangedWho_ManIndex.Location = New System.Drawing.Point(518, 195)
+ Me.TextEditChangedWho_ManIndex.Location = New System.Drawing.Point(495, 207)
Me.TextEditChangedWho_ManIndex.MenuManager = Me.RibbonControl1
Me.TextEditChangedWho_ManIndex.Name = "TextEditChangedWho_ManIndex"
- Me.TextEditChangedWho_ManIndex.Size = New System.Drawing.Size(454, 20)
+ Me.TextEditChangedWho_ManIndex.Size = New System.Drawing.Size(410, 20)
Me.TextEditChangedWho_ManIndex.StyleController = Me.LayoutControlManIndexe
Me.TextEditChangedWho_ManIndex.TabIndex = 20
'
- 'TextEdit9
+ 'GUIDTextBoxMANINDEX
'
- Me.TextEdit9.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "GUID", True))
- Me.TextEdit9.Location = New System.Drawing.Point(84, 15)
- Me.TextEdit9.MenuManager = Me.RibbonControl1
- Me.TextEdit9.Name = "TextEdit9"
- Me.TextEdit9.Size = New System.Drawing.Size(60, 20)
- Me.TextEdit9.StyleController = Me.LayoutControlManIndexe
- Me.TextEdit9.TabIndex = 21
+ Me.GUIDTextBoxMANINDEX.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "GUID", True))
+ Me.GUIDTextBoxMANINDEX.Location = New System.Drawing.Point(91, 15)
+ Me.GUIDTextBoxMANINDEX.MenuManager = Me.RibbonControl1
+ Me.GUIDTextBoxMANINDEX.Name = "GUIDTextBoxMANINDEX"
+ Me.GUIDTextBoxMANINDEX.Size = New System.Drawing.Size(50, 20)
+ Me.GUIDTextBoxMANINDEX.StyleController = Me.LayoutControlManIndexe
+ Me.GUIDTextBoxMANINDEX.TabIndex = 21
'
'TextEdit10
'
Me.TextEdit10.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "NAME", True))
- Me.TextEdit10.Location = New System.Drawing.Point(84, 45)
+ Me.TextEdit10.Location = New System.Drawing.Point(91, 45)
Me.TextEdit10.MenuManager = Me.RibbonControl1
Me.TextEdit10.Name = "TextEdit10"
- Me.TextEdit10.Size = New System.Drawing.Size(393, 20)
+ Me.TextEdit10.Size = New System.Drawing.Size(353, 20)
Me.TextEdit10.StyleController = Me.LayoutControlManIndexe
Me.TextEdit10.TabIndex = 22
'
'TextEdit11
'
Me.TextEdit11.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "COMMENT", True))
- Me.TextEdit11.Location = New System.Drawing.Point(84, 75)
+ Me.TextEdit11.Location = New System.Drawing.Point(91, 75)
Me.TextEdit11.MenuManager = Me.RibbonControl1
Me.TextEdit11.Name = "TextEdit11"
- Me.TextEdit11.Size = New System.Drawing.Size(888, 20)
+ Me.TextEdit11.Size = New System.Drawing.Size(814, 20)
Me.TextEdit11.StyleController = Me.LayoutControlManIndexe
Me.TextEdit11.TabIndex = 23
'
@@ -969,41 +1118,41 @@ Partial Class frmAdmin_Globix
'
Me.SpinEdit1.DataBindings.Add(New System.Windows.Forms.Binding("EditValue", Me.TBDD_INDEX_MANBindingSource, "SEQUENCE", True))
Me.SpinEdit1.EditValue = New Decimal(New Integer() {0, 0, 0, 0})
- Me.SpinEdit1.Location = New System.Drawing.Point(223, 15)
+ Me.SpinEdit1.Location = New System.Drawing.Point(227, 15)
Me.SpinEdit1.MenuManager = Me.RibbonControl1
Me.SpinEdit1.Name = "SpinEdit1"
Me.SpinEdit1.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)})
- Me.SpinEdit1.Size = New System.Drawing.Size(60, 20)
+ Me.SpinEdit1.Size = New System.Drawing.Size(50, 20)
Me.SpinEdit1.StyleController = Me.LayoutControlManIndexe
Me.SpinEdit1.TabIndex = 25
'
'ComboBoxEdit4
'
Me.ComboBoxEdit4.DataBindings.Add(New System.Windows.Forms.Binding("EditValue", Me.TBDD_INDEX_MANBindingSource, "DATATYPE", True))
- Me.ComboBoxEdit4.Location = New System.Drawing.Point(84, 105)
+ Me.ComboBoxEdit4.Location = New System.Drawing.Point(91, 105)
Me.ComboBoxEdit4.MenuManager = Me.RibbonControl1
Me.ComboBoxEdit4.Name = "ComboBoxEdit4"
Me.ComboBoxEdit4.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)})
Me.ComboBoxEdit4.Properties.Items.AddRange(New Object() {"VARCHAR", "INTEGER", "DATE", "BOOLEAN"})
- Me.ComboBoxEdit4.Size = New System.Drawing.Size(161, 20)
+ Me.ComboBoxEdit4.Size = New System.Drawing.Size(137, 20)
Me.ComboBoxEdit4.StyleController = Me.LayoutControlManIndexe
Me.ComboBoxEdit4.TabIndex = 27
'
- 'LayoutControlGroup1
+ 'LayoutControlGroupDoctype
'
- Me.LayoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
- Me.LayoutControlGroup1.GroupBordersVisible = False
- Me.LayoutControlGroup1.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem17, Me.LayoutControlItem19, Me.LayoutControlItem21, Me.LayoutControlItem6, Me.LayoutControlItem24, Me.LayoutControlItem2, Me.LayoutControlItem8, Me.LayoutControlItem11, Me.LayoutControlItem13, Me.LayoutControlItem9, Me.LayoutControlItem27, Me.LayoutControlItem29, Me.EmptySpaceItem2, Me.LayoutControlItem16, Me.LayoutControlItem7, Me.LayoutControlItem31, Me.LayoutControlItem18})
- Me.LayoutControlGroup1.Name = "LayoutControlGroup1"
- Me.LayoutControlGroup1.Size = New System.Drawing.Size(987, 327)
- Me.LayoutControlGroup1.TextVisible = False
+ Me.LayoutControlGroupDoctype.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
+ Me.LayoutControlGroupDoctype.GroupBordersVisible = False
+ Me.LayoutControlGroupDoctype.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem17, Me.LayoutControlItem19, Me.LayoutControlItem21, Me.LayoutControlItem6, Me.LayoutControlItem24, Me.LayoutControlItem2, Me.LayoutControlItem8, Me.LayoutControlItem11, Me.LayoutControlItem13, Me.LayoutControlItem9, Me.LayoutControlItem27, Me.LayoutControlItem29, Me.EmptySpaceItem2, Me.LayoutControlItem16, Me.LayoutControlItem7, Me.LayoutControlItem31, Me.LayoutControlItem18, Me.EmptySpaceItem6, Me.LayoutControlItem46})
+ Me.LayoutControlGroupDoctype.Name = "LayoutControlGroupDoctype"
+ Me.LayoutControlGroupDoctype.Size = New System.Drawing.Size(920, 272)
+ Me.LayoutControlGroupDoctype.TextVisible = False
'
'LayoutControlItem17
'
Me.LayoutControlItem17.Control = Me.MULTISELECTCheckBox
- Me.LayoutControlItem17.Location = New System.Drawing.Point(240, 90)
+ Me.LayoutControlItem17.Location = New System.Drawing.Point(223, 90)
Me.LayoutControlItem17.Name = "LayoutControlItem17"
- Me.LayoutControlItem17.Size = New System.Drawing.Size(233, 30)
+ Me.LayoutControlItem17.Size = New System.Drawing.Size(217, 30)
Me.LayoutControlItem17.Text = "MULTISELECT:"
Me.LayoutControlItem17.TextSize = New System.Drawing.Size(0, 0)
Me.LayoutControlItem17.TextVisible = False
@@ -1011,9 +1160,9 @@ Partial Class frmAdmin_Globix
'LayoutControlItem19
'
Me.LayoutControlItem19.Control = Me.VKT_PREVENT_MULTIPLE_VALUESCheckBox
- Me.LayoutControlItem19.Location = New System.Drawing.Point(473, 90)
+ Me.LayoutControlItem19.Location = New System.Drawing.Point(440, 90)
Me.LayoutControlItem19.Name = "LayoutControlItem19"
- Me.LayoutControlItem19.Size = New System.Drawing.Size(206, 30)
+ Me.LayoutControlItem19.Size = New System.Drawing.Size(192, 30)
Me.LayoutControlItem19.Text = "VKT PREVENT MULTIPLE VALUES:"
Me.LayoutControlItem19.TextSize = New System.Drawing.Size(0, 0)
Me.LayoutControlItem19.TextVisible = False
@@ -1021,9 +1170,9 @@ Partial Class frmAdmin_Globix
'LayoutControlItem21
'
Me.LayoutControlItem21.Control = Me.VKT_ADD_ITEMCheckBox
- Me.LayoutControlItem21.Location = New System.Drawing.Point(679, 90)
+ Me.LayoutControlItem21.Location = New System.Drawing.Point(632, 90)
Me.LayoutControlItem21.Name = "LayoutControlItem21"
- Me.LayoutControlItem21.Size = New System.Drawing.Size(288, 30)
+ Me.LayoutControlItem21.Size = New System.Drawing.Size(268, 30)
Me.LayoutControlItem21.Text = "VKT ADD ITEM:"
Me.LayoutControlItem21.TextSize = New System.Drawing.Size(0, 0)
Me.LayoutControlItem21.TextVisible = False
@@ -1033,7 +1182,7 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem6.Control = Me.btneditSQLmanIndex
Me.LayoutControlItem6.Location = New System.Drawing.Point(0, 120)
Me.LayoutControlItem6.Name = "LayoutControlItem6"
- Me.LayoutControlItem6.Size = New System.Drawing.Size(967, 36)
+ Me.LayoutControlItem6.Size = New System.Drawing.Size(900, 36)
Me.LayoutControlItem6.Text = "SQL Abfrage bearbeiten"
Me.LayoutControlItem6.TextSize = New System.Drawing.Size(0, 0)
Me.LayoutControlItem6.TextVisible = False
@@ -1043,24 +1192,24 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem24.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.LayoutControlItem24.AppearanceItemCaption.Options.UseFont = True
Me.LayoutControlItem24.Control = Me.TextEditAddedWho_ManIndex
- Me.LayoutControlItem24.Location = New System.Drawing.Point(0, 180)
+ Me.LayoutControlItem24.Location = New System.Drawing.Point(0, 192)
Me.LayoutControlItem24.Name = "LayoutControlItem24"
Me.LayoutControlItem24.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem24.Size = New System.Drawing.Size(434, 30)
+ Me.LayoutControlItem24.Size = New System.Drawing.Size(404, 30)
Me.LayoutControlItem24.Text = "ErstelltWer"
- Me.LayoutControlItem24.TextSize = New System.Drawing.Size(66, 13)
+ Me.LayoutControlItem24.TextSize = New System.Drawing.Size(73, 13)
'
'LayoutControlItem2
'
- Me.LayoutControlItem2.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem2.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI Semibold", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.LayoutControlItem2.AppearanceItemCaption.Options.UseFont = True
- Me.LayoutControlItem2.Control = Me.TextEdit9
+ Me.LayoutControlItem2.Control = Me.GUIDTextBoxMANINDEX
Me.LayoutControlItem2.Location = New System.Drawing.Point(0, 0)
Me.LayoutControlItem2.Name = "LayoutControlItem2"
Me.LayoutControlItem2.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem2.Size = New System.Drawing.Size(139, 30)
+ Me.LayoutControlItem2.Size = New System.Drawing.Size(136, 30)
Me.LayoutControlItem2.Text = "ID"
- Me.LayoutControlItem2.TextSize = New System.Drawing.Size(66, 13)
+ Me.LayoutControlItem2.TextSize = New System.Drawing.Size(73, 13)
'
'LayoutControlItem8
'
@@ -1068,9 +1217,9 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem8.Location = New System.Drawing.Point(0, 30)
Me.LayoutControlItem8.Name = "LayoutControlItem8"
Me.LayoutControlItem8.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem8.Size = New System.Drawing.Size(472, 30)
+ Me.LayoutControlItem8.Size = New System.Drawing.Size(439, 30)
Me.LayoutControlItem8.Text = "Bezeichnung"
- Me.LayoutControlItem8.TextSize = New System.Drawing.Size(66, 13)
+ Me.LayoutControlItem8.TextSize = New System.Drawing.Size(73, 13)
'
'LayoutControlItem11
'
@@ -1078,9 +1227,9 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem11.Location = New System.Drawing.Point(0, 60)
Me.LayoutControlItem11.Name = "LayoutControlItem11"
Me.LayoutControlItem11.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem11.Size = New System.Drawing.Size(967, 30)
+ Me.LayoutControlItem11.Size = New System.Drawing.Size(900, 30)
Me.LayoutControlItem11.Text = "Hinweis"
- Me.LayoutControlItem11.TextSize = New System.Drawing.Size(66, 13)
+ Me.LayoutControlItem11.TextSize = New System.Drawing.Size(73, 13)
'
'LayoutControlItem13
'
@@ -1088,19 +1237,19 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem13.Location = New System.Drawing.Point(0, 90)
Me.LayoutControlItem13.Name = "LayoutControlItem13"
Me.LayoutControlItem13.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem13.Size = New System.Drawing.Size(240, 30)
+ Me.LayoutControlItem13.Size = New System.Drawing.Size(223, 30)
Me.LayoutControlItem13.Text = "Datentyp"
- Me.LayoutControlItem13.TextSize = New System.Drawing.Size(66, 13)
+ Me.LayoutControlItem13.TextSize = New System.Drawing.Size(73, 13)
'
'LayoutControlItem9
'
Me.LayoutControlItem9.Control = Me.SpinEdit1
- Me.LayoutControlItem9.Location = New System.Drawing.Point(139, 0)
+ Me.LayoutControlItem9.Location = New System.Drawing.Point(136, 0)
Me.LayoutControlItem9.Name = "LayoutControlItem9"
Me.LayoutControlItem9.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem9.Size = New System.Drawing.Size(139, 30)
+ Me.LayoutControlItem9.Size = New System.Drawing.Size(136, 30)
Me.LayoutControlItem9.Text = "Reihenfolge"
- Me.LayoutControlItem9.TextSize = New System.Drawing.Size(66, 13)
+ Me.LayoutControlItem9.TextSize = New System.Drawing.Size(73, 13)
'
'LayoutControlItem27
'
@@ -1108,12 +1257,12 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem27.AppearanceItemCaption.Options.UseFont = True
Me.LayoutControlItem27.Control = Me.TextEdit2
Me.LayoutControlItem27.Enabled = False
- Me.LayoutControlItem27.Location = New System.Drawing.Point(0, 210)
+ Me.LayoutControlItem27.Location = New System.Drawing.Point(0, 222)
Me.LayoutControlItem27.Name = "LayoutControlItem27"
Me.LayoutControlItem27.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem27.Size = New System.Drawing.Size(967, 97)
+ Me.LayoutControlItem27.Size = New System.Drawing.Size(404, 30)
Me.LayoutControlItem27.Text = "Erstellt wann"
- Me.LayoutControlItem27.TextSize = New System.Drawing.Size(66, 13)
+ Me.LayoutControlItem27.TextSize = New System.Drawing.Size(73, 13)
'
'LayoutControlItem29
'
@@ -1121,36 +1270,36 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem29.AppearanceItemCaption.Options.UseFont = True
Me.LayoutControlItem29.Control = Me.TextEditChangedWho_ManIndex
Me.LayoutControlItem29.Enabled = False
- Me.LayoutControlItem29.Location = New System.Drawing.Point(434, 180)
+ Me.LayoutControlItem29.Location = New System.Drawing.Point(404, 192)
Me.LayoutControlItem29.Name = "LayoutControlItem29"
Me.LayoutControlItem29.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem29.Size = New System.Drawing.Size(533, 30)
+ Me.LayoutControlItem29.Size = New System.Drawing.Size(496, 30)
Me.LayoutControlItem29.Text = "Geändert wer"
- Me.LayoutControlItem29.TextSize = New System.Drawing.Size(66, 13)
+ Me.LayoutControlItem29.TextSize = New System.Drawing.Size(73, 13)
'
'EmptySpaceItem2
'
Me.EmptySpaceItem2.AllowHotTrack = False
- Me.EmptySpaceItem2.Location = New System.Drawing.Point(381, 0)
+ Me.EmptySpaceItem2.Location = New System.Drawing.Point(366, 0)
Me.EmptySpaceItem2.Name = "EmptySpaceItem2"
- Me.EmptySpaceItem2.Size = New System.Drawing.Size(586, 30)
+ Me.EmptySpaceItem2.Size = New System.Drawing.Size(534, 30)
Me.EmptySpaceItem2.TextSize = New System.Drawing.Size(0, 0)
'
'LayoutControlItem16
'
Me.LayoutControlItem16.Control = Me.WD_INDEXComboBox
- Me.LayoutControlItem16.Location = New System.Drawing.Point(472, 30)
+ Me.LayoutControlItem16.Location = New System.Drawing.Point(439, 30)
Me.LayoutControlItem16.Name = "LayoutControlItem16"
- Me.LayoutControlItem16.Size = New System.Drawing.Size(495, 30)
+ Me.LayoutControlItem16.Size = New System.Drawing.Size(461, 30)
Me.LayoutControlItem16.Text = "Attribut"
- Me.LayoutControlItem16.TextSize = New System.Drawing.Size(66, 13)
+ Me.LayoutControlItem16.TextSize = New System.Drawing.Size(73, 13)
'
'LayoutControlItem7
'
Me.LayoutControlItem7.Control = Me.ACTIVECheckBox
- Me.LayoutControlItem7.Location = New System.Drawing.Point(278, 0)
+ Me.LayoutControlItem7.Location = New System.Drawing.Point(272, 0)
Me.LayoutControlItem7.Name = "LayoutControlItem7"
- Me.LayoutControlItem7.Size = New System.Drawing.Size(103, 30)
+ Me.LayoutControlItem7.Size = New System.Drawing.Size(94, 30)
Me.LayoutControlItem7.Text = "ACTIVE:"
Me.LayoutControlItem7.TextSize = New System.Drawing.Size(0, 0)
Me.LayoutControlItem7.TextVisible = False
@@ -1162,20 +1311,41 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem31.Control = Me.CONNECTION_IDTextBox
Me.LayoutControlItem31.Location = New System.Drawing.Point(0, 156)
Me.LayoutControlItem31.Name = "LayoutControlItem31"
- Me.LayoutControlItem31.Size = New System.Drawing.Size(108, 24)
+ Me.LayoutControlItem31.Size = New System.Drawing.Size(101, 24)
Me.LayoutControlItem31.Text = "ConnId:"
- Me.LayoutControlItem31.TextSize = New System.Drawing.Size(66, 13)
+ Me.LayoutControlItem31.TextSize = New System.Drawing.Size(73, 13)
'
'LayoutControlItem18
'
Me.LayoutControlItem18.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.LayoutControlItem18.AppearanceItemCaption.Options.UseFont = True
Me.LayoutControlItem18.Control = Me.SQL_RESULTTextBox
- Me.LayoutControlItem18.Location = New System.Drawing.Point(108, 156)
+ Me.LayoutControlItem18.Location = New System.Drawing.Point(101, 156)
Me.LayoutControlItem18.Name = "LayoutControlItem18"
- Me.LayoutControlItem18.Size = New System.Drawing.Size(859, 24)
+ Me.LayoutControlItem18.Size = New System.Drawing.Size(799, 24)
Me.LayoutControlItem18.Text = "SQL:"
- Me.LayoutControlItem18.TextSize = New System.Drawing.Size(66, 13)
+ Me.LayoutControlItem18.TextSize = New System.Drawing.Size(73, 13)
+ '
+ 'EmptySpaceItem6
+ '
+ Me.EmptySpaceItem6.AllowHotTrack = False
+ Me.EmptySpaceItem6.Location = New System.Drawing.Point(0, 180)
+ Me.EmptySpaceItem6.Name = "EmptySpaceItem6"
+ Me.EmptySpaceItem6.Size = New System.Drawing.Size(900, 12)
+ Me.EmptySpaceItem6.TextSize = New System.Drawing.Size(0, 0)
+ '
+ 'LayoutControlItem46
+ '
+ Me.LayoutControlItem46.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem46.AppearanceItemCaption.Options.UseFont = True
+ Me.LayoutControlItem46.Control = Me.TextEdit4
+ Me.LayoutControlItem46.Enabled = False
+ Me.LayoutControlItem46.Location = New System.Drawing.Point(404, 222)
+ Me.LayoutControlItem46.Name = "LayoutControlItem46"
+ Me.LayoutControlItem46.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem46.Size = New System.Drawing.Size(496, 30)
+ Me.LayoutControlItem46.Text = "Geändert wann"
+ Me.LayoutControlItem46.TextSize = New System.Drawing.Size(73, 13)
'
'ListBoxAutoIndexe
'
@@ -1185,7 +1355,7 @@ Partial Class frmAdmin_Globix
Me.ListBoxAutoIndexe.FormattingEnabled = True
Me.ListBoxAutoIndexe.Location = New System.Drawing.Point(0, 0)
Me.ListBoxAutoIndexe.Name = "ListBoxAutoIndexe"
- Me.ListBoxAutoIndexe.Size = New System.Drawing.Size(191, 327)
+ Me.ListBoxAutoIndexe.Size = New System.Drawing.Size(191, 272)
Me.ListBoxAutoIndexe.TabIndex = 0
Me.ListBoxAutoIndexe.ValueMember = "GUID"
'
@@ -1195,7 +1365,7 @@ Partial Class frmAdmin_Globix
Me.XtraTabPageRework.ImageOptions.SvgImage = CType(resources.GetObject("XtraTabPageRework.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
Me.XtraTabPageRework.ImageOptions.SvgImageSize = New System.Drawing.Size(16, 16)
Me.XtraTabPageRework.Name = "XtraTabPageRework"
- Me.XtraTabPageRework.Size = New System.Drawing.Size(1178, 327)
+ Me.XtraTabPageRework.Size = New System.Drawing.Size(1178, 271)
Me.XtraTabPageRework.Text = "Nachbearbeitungsfunktionen manueller Index"
'
'LayoutControlRework
@@ -1221,7 +1391,7 @@ Partial Class frmAdmin_Globix
Me.XtraTabPageAutoIndexe.ImageOptions.SvgImage = CType(resources.GetObject("XtraTabPageAutoIndexe.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
Me.XtraTabPageAutoIndexe.ImageOptions.SvgImageSize = New System.Drawing.Size(16, 16)
Me.XtraTabPageAutoIndexe.Name = "XtraTabPageAutoIndexe"
- Me.XtraTabPageAutoIndexe.Size = New System.Drawing.Size(1178, 327)
+ Me.XtraTabPageAutoIndexe.Size = New System.Drawing.Size(1178, 271)
Me.XtraTabPageAutoIndexe.Text = "automatische/Feste Attribute"
'
'LayoutControlAutoIndexe
@@ -1234,9 +1404,9 @@ Partial Class frmAdmin_Globix
Me.LayoutControlAutoIndexe.Controls.Add(Me.INDEXNAMEComboBox)
Me.LayoutControlAutoIndexe.Controls.Add(Me.ACTIVECheckBox1)
Me.LayoutControlAutoIndexe.Controls.Add(Me.SEQUENCENumericUpDown1)
- Me.LayoutControlAutoIndexe.Controls.Add(Me.GUID_AUTOATTRIBUTETextBox)
+ Me.LayoutControlAutoIndexe.Controls.Add(Me.GUIDTextBoxAutoAttribute)
Me.LayoutControlAutoIndexe.Controls.Add(Me.SimpleButton1)
- Me.LayoutControlAutoIndexe.Controls.Add(Me.ComboBoxEdit1)
+ Me.LayoutControlAutoIndexe.Controls.Add(Me.ComboBoxEditAAttrFileParam)
Me.LayoutControlAutoIndexe.Controls.Add(Me.SimpleButton2)
Me.LayoutControlAutoIndexe.Controls.Add(Me.ADDED_WHOTextBoxAutoAttribut)
Me.LayoutControlAutoIndexe.Controls.Add(Me.TextEdit3)
@@ -1246,10 +1416,35 @@ Partial Class frmAdmin_Globix
Me.LayoutControlAutoIndexe.Location = New System.Drawing.Point(0, 0)
Me.LayoutControlAutoIndexe.Name = "LayoutControlAutoIndexe"
Me.LayoutControlAutoIndexe.Root = Me.LayoutControlGroup2
- Me.LayoutControlAutoIndexe.Size = New System.Drawing.Size(1178, 327)
+ Me.LayoutControlAutoIndexe.Size = New System.Drawing.Size(1178, 271)
Me.LayoutControlAutoIndexe.TabIndex = 0
Me.LayoutControlAutoIndexe.Text = "LayoutControl1"
'
+ 'ListBox1
+ '
+ Me.ListBox1.DataSource = Me.TBDD_INDEX_AUTOMBindingSource
+ Me.ListBox1.DisplayMember = "INDEXNAME"
+ Me.ListBox1.FormattingEnabled = True
+ Me.ListBox1.Location = New System.Drawing.Point(12, 12)
+ Me.ListBox1.Name = "ListBox1"
+ Me.ListBox1.Size = New System.Drawing.Size(186, 238)
+ Me.ListBox1.TabIndex = 24
+ '
+ 'TBDD_INDEX_AUTOMBindingSource
+ '
+ Me.TBDD_INDEX_AUTOMBindingSource.DataMember = "TBDD_INDEX_AUTOM"
+ Me.TBDD_INDEX_AUTOMBindingSource.DataSource = Me.GlobixDataset
+ '
+ 'CONNECTION_IDTextBox1
+ '
+ 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.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(370, 142)
+ Me.CONNECTION_IDTextBox1.Name = "CONNECTION_IDTextBox1"
+ Me.CONNECTION_IDTextBox1.Size = New System.Drawing.Size(29, 20)
+ Me.CONNECTION_IDTextBox1.TabIndex = 23
+ '
'SQL_RESULTTextBox1
'
Me.SQL_RESULTTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "SQL_RESULT", True))
@@ -1260,19 +1455,14 @@ Partial Class frmAdmin_Globix
Me.SQL_RESULTTextBox1.Size = New System.Drawing.Size(730, 20)
Me.SQL_RESULTTextBox1.TabIndex = 14
'
- 'TBDD_INDEX_AUTOMBindingSource
- '
- Me.TBDD_INDEX_AUTOMBindingSource.DataMember = "TBDD_INDEX_AUTOM"
- Me.TBDD_INDEX_AUTOMBindingSource.DataSource = Me.GlobixDataset
- '
'SQL_ACTIVECheckBox
'
Me.SQL_ACTIVECheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_INDEX_AUTOMBindingSource, "SQL_ACTIVE", True))
- Me.SQL_ACTIVECheckBox.Location = New System.Drawing.Point(202, 113)
+ Me.SQL_ACTIVECheckBox.Location = New System.Drawing.Point(205, 116)
Me.SQL_ACTIVECheckBox.Name = "SQL_ACTIVECheckBox"
- Me.SQL_ACTIVECheckBox.Size = New System.Drawing.Size(111, 20)
+ Me.SQL_ACTIVECheckBox.Size = New System.Drawing.Size(105, 20)
Me.SQL_ACTIVECheckBox.TabIndex = 12
- Me.SQL_ACTIVECheckBox.Text = "Attribut per SQL?"
+ Me.SQL_ACTIVECheckBox.Text = "SQL Config?"
Me.SQL_ACTIVECheckBox.UseVisualStyleBackColor = True
'
'VALUETextBox
@@ -1291,15 +1481,15 @@ Partial Class frmAdmin_Globix
Me.INDEXNAMEComboBox.FormattingEnabled = True
Me.INDEXNAMEComboBox.Location = New System.Drawing.Point(371, 45)
Me.INDEXNAMEComboBox.Name = "INDEXNAMEComboBox"
- Me.INDEXNAMEComboBox.Size = New System.Drawing.Size(308, 21)
+ Me.INDEXNAMEComboBox.Size = New System.Drawing.Size(419, 21)
Me.INDEXNAMEComboBox.TabIndex = 8
'
'ACTIVECheckBox1
'
Me.ACTIVECheckBox1.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_INDEX_AUTOMBindingSource, "ACTIVE", True))
- Me.ACTIVECheckBox1.Location = New System.Drawing.Point(517, 12)
+ Me.ACTIVECheckBox1.Location = New System.Drawing.Point(554, 12)
Me.ACTIVECheckBox1.Name = "ACTIVECheckBox1"
- Me.ACTIVECheckBox1.Size = New System.Drawing.Size(649, 20)
+ Me.ACTIVECheckBox1.Size = New System.Drawing.Size(612, 20)
Me.ACTIVECheckBox1.TabIndex = 7
Me.ACTIVECheckBox1.Text = "Aktiv"
Me.ACTIVECheckBox1.UseVisualStyleBackColor = True
@@ -1307,20 +1497,20 @@ Partial Class frmAdmin_Globix
'SEQUENCENumericUpDown1
'
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(493, 15)
Me.SEQUENCENumericUpDown1.Name = "SEQUENCENumericUpDown1"
- Me.SEQUENCENumericUpDown1.Size = New System.Drawing.Size(41, 22)
+ Me.SEQUENCENumericUpDown1.Size = New System.Drawing.Size(54, 22)
Me.SEQUENCENumericUpDown1.TabIndex = 6
'
- 'GUID_AUTOATTRIBUTETextBox
+ 'GUIDTextBoxAutoAttribute
'
- Me.GUID_AUTOATTRIBUTETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "GUID", True))
- Me.GUID_AUTOATTRIBUTETextBox.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GUID_AUTOATTRIBUTETextBox.Location = New System.Drawing.Point(371, 15)
- Me.GUID_AUTOATTRIBUTETextBox.Name = "GUID_AUTOATTRIBUTETextBox"
- Me.GUID_AUTOATTRIBUTETextBox.ReadOnly = True
- Me.GUID_AUTOATTRIBUTETextBox.Size = New System.Drawing.Size(20, 20)
- Me.GUID_AUTOATTRIBUTETextBox.TabIndex = 5
+ 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.Location = New System.Drawing.Point(371, 15)
+ Me.GUIDTextBoxAutoAttribute.Name = "GUIDTextBoxAutoAttribute"
+ Me.GUIDTextBoxAutoAttribute.ReadOnly = True
+ Me.GUIDTextBoxAutoAttribute.Size = New System.Drawing.Size(44, 20)
+ Me.GUIDTextBoxAutoAttribute.TabIndex = 5
'
'SimpleButton1
'
@@ -1334,16 +1524,16 @@ Partial Class frmAdmin_Globix
Me.SimpleButton1.TabIndex = 10
Me.SimpleButton1.Text = "Übernehmen"
'
- 'ComboBoxEdit1
+ 'ComboBoxEditAAttrFileParam
'
- Me.ComboBoxEdit1.Location = New System.Drawing.Point(868, 76)
- Me.ComboBoxEdit1.MenuManager = Me.RibbonControl1
- Me.ComboBoxEdit1.Name = "ComboBoxEdit1"
- Me.ComboBoxEdit1.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)})
- Me.ComboBoxEdit1.Properties.Items.AddRange(New Object() {"Dateiname (mit Endung)", "Dateiname (ohne Endung)", "Dateiendung", "Datei Erstelldatum", "Datei Erstellt wer", "Aktuelles Datum (DD.MM.YYYY)", "Username", "Usercode"})
- Me.ComboBoxEdit1.Size = New System.Drawing.Size(295, 20)
- Me.ComboBoxEdit1.StyleController = Me.LayoutControlAutoIndexe
- Me.ComboBoxEdit1.TabIndex = 11
+ Me.ComboBoxEditAAttrFileParam.Location = New System.Drawing.Point(868, 76)
+ Me.ComboBoxEditAAttrFileParam.MenuManager = Me.RibbonControl1
+ 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.Items.AddRange(New Object() {"Dateiname (mit Endung)", "Dateiname (ohne Endung)", "Dateiendung", "Datei Erstelldatum", "Datei Erstellt wer", "Aktuelles Datum (DD.MM.YYYY)", "Username", "Usercode"})
+ Me.ComboBoxEditAAttrFileParam.Size = New System.Drawing.Size(295, 20)
+ Me.ComboBoxEditAAttrFileParam.StyleController = Me.LayoutControlAutoIndexe
+ Me.ComboBoxEditAAttrFileParam.TabIndex = 11
'
'SimpleButton2
'
@@ -1360,12 +1550,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.Enabled = False
- Me.ADDED_WHOTextBoxAutoAttribut.Location = New System.Drawing.Point(368, 169)
+ Me.ADDED_WHOTextBoxAutoAttribut.Location = New System.Drawing.Point(371, 206)
Me.ADDED_WHOTextBoxAutoAttribut.MenuManager = Me.RibbonControl1
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.Options.UseFont = True
- Me.ADDED_WHOTextBoxAutoAttribut.Size = New System.Drawing.Size(314, 20)
+ Me.ADDED_WHOTextBoxAutoAttribut.Size = New System.Drawing.Size(308, 20)
Me.ADDED_WHOTextBoxAutoAttribut.StyleController = Me.LayoutControlAutoIndexe
Me.ADDED_WHOTextBoxAutoAttribut.TabIndex = 19
'
@@ -1373,12 +1563,12 @@ Partial Class frmAdmin_Globix
'
Me.TextEdit3.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "ADDED_WHEN", True))
Me.TextEdit3.Enabled = False
- Me.TextEdit3.Location = New System.Drawing.Point(368, 193)
+ Me.TextEdit3.Location = New System.Drawing.Point(371, 236)
Me.TextEdit3.MenuManager = Me.RibbonControl1
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.Options.UseFont = True
- Me.TextEdit3.Size = New System.Drawing.Size(314, 20)
+ Me.TextEdit3.Size = New System.Drawing.Size(308, 20)
Me.TextEdit3.StyleController = Me.LayoutControlAutoIndexe
Me.TextEdit3.TabIndex = 20
'
@@ -1386,24 +1576,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.EditValue = ""
- Me.CHANGED_WHOTextEditAutoAttribut.Location = New System.Drawing.Point(852, 169)
+ Me.CHANGED_WHOTextEditAutoAttribut.Location = New System.Drawing.Point(855, 206)
Me.CHANGED_WHOTextEditAutoAttribut.MenuManager = Me.RibbonControl1
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.Options.UseFont = True
- Me.CHANGED_WHOTextEditAutoAttribut.Size = New System.Drawing.Size(314, 20)
+ Me.CHANGED_WHOTextEditAutoAttribut.Size = New System.Drawing.Size(308, 20)
Me.CHANGED_WHOTextEditAutoAttribut.StyleController = Me.LayoutControlAutoIndexe
Me.CHANGED_WHOTextEditAutoAttribut.TabIndex = 21
'
'TextEdit5
'
Me.TextEdit5.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "CHANGED_WHEN", True))
- Me.TextEdit5.Location = New System.Drawing.Point(852, 193)
+ Me.TextEdit5.Location = New System.Drawing.Point(855, 236)
Me.TextEdit5.MenuManager = Me.RibbonControl1
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.Options.UseFont = True
- Me.TextEdit5.Size = New System.Drawing.Size(314, 20)
+ Me.TextEdit5.Size = New System.Drawing.Size(308, 20)
Me.TextEdit5.StyleController = Me.LayoutControlAutoIndexe
Me.TextEdit5.TabIndex = 22
'
@@ -1411,28 +1601,28 @@ Partial Class frmAdmin_Globix
'
Me.LayoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
Me.LayoutControlGroup2.GroupBordersVisible = False
- Me.LayoutControlGroup2.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem15, Me.LayoutControlItem23, Me.LayoutControlItem33, Me.LayoutControlItem34, Me.LayoutControlItem35, Me.LayoutControlItem14, Me.LayoutControlItem40, Me.LayoutControlItem37, Me.LayoutControlItem39, Me.LayoutControlItem42, Me.EmptySpaceItem4, Me.ADDED_WHOAutoAttribut, Me.LayoutControlItem41, Me.CHANGED_WHOItemAutoAttribut, Me.LayoutControlItem43, Me.LayoutControlItem45, Me.LayoutControlItem44})
+ Me.LayoutControlGroup2.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem15, Me.LayoutControlItem23, Me.LayoutControlItem33, Me.LayoutControlItem34, Me.LayoutControlItem35, Me.LayoutControlItem14, Me.LayoutControlItem40, Me.LayoutControlItem37, Me.LayoutControlItem39, Me.LayoutControlItem42, Me.EmptySpaceItem4, Me.ADDED_WHOAutoAttribut, Me.LayoutControlItem41, Me.CHANGED_WHOItemAutoAttribut, Me.LayoutControlItem43, Me.LayoutControlItem45, Me.LayoutControlItem44, Me.EmptySpaceItem5})
Me.LayoutControlGroup2.Name = "LayoutControlGroup2"
- Me.LayoutControlGroup2.Size = New System.Drawing.Size(1178, 327)
+ Me.LayoutControlGroup2.Size = New System.Drawing.Size(1178, 271)
Me.LayoutControlGroup2.TextVisible = False
'
'LayoutControlItem15
'
- Me.LayoutControlItem15.Control = Me.GUID_AUTOATTRIBUTETextBox
+ Me.LayoutControlItem15.Control = Me.GUIDTextBoxAutoAttribute
Me.LayoutControlItem15.Location = New System.Drawing.Point(190, 0)
Me.LayoutControlItem15.Name = "LayoutControlItem15"
Me.LayoutControlItem15.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem15.Size = New System.Drawing.Size(196, 30)
+ Me.LayoutControlItem15.Size = New System.Drawing.Size(220, 30)
Me.LayoutControlItem15.Text = "ID"
Me.LayoutControlItem15.TextSize = New System.Drawing.Size(163, 13)
'
'LayoutControlItem23
'
Me.LayoutControlItem23.Control = Me.SEQUENCENumericUpDown1
- Me.LayoutControlItem23.Location = New System.Drawing.Point(386, 0)
+ Me.LayoutControlItem23.Location = New System.Drawing.Point(410, 0)
Me.LayoutControlItem23.Name = "LayoutControlItem23"
Me.LayoutControlItem23.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem23.Size = New System.Drawing.Size(119, 30)
+ Me.LayoutControlItem23.Size = New System.Drawing.Size(132, 30)
Me.LayoutControlItem23.Text = "Reihenfolge"
Me.LayoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize
Me.LayoutControlItem23.TextSize = New System.Drawing.Size(63, 13)
@@ -1441,9 +1631,9 @@ Partial Class frmAdmin_Globix
'LayoutControlItem33
'
Me.LayoutControlItem33.Control = Me.ACTIVECheckBox1
- Me.LayoutControlItem33.Location = New System.Drawing.Point(505, 0)
+ Me.LayoutControlItem33.Location = New System.Drawing.Point(542, 0)
Me.LayoutControlItem33.Name = "LayoutControlItem33"
- Me.LayoutControlItem33.Size = New System.Drawing.Size(653, 30)
+ Me.LayoutControlItem33.Size = New System.Drawing.Size(616, 30)
Me.LayoutControlItem33.Text = "Aktiv"
Me.LayoutControlItem33.TextSize = New System.Drawing.Size(0, 0)
Me.LayoutControlItem33.TextVisible = False
@@ -1454,7 +1644,7 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem34.Location = New System.Drawing.Point(190, 30)
Me.LayoutControlItem34.Name = "LayoutControlItem34"
Me.LayoutControlItem34.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem34.Size = New System.Drawing.Size(484, 31)
+ Me.LayoutControlItem34.Size = New System.Drawing.Size(595, 31)
Me.LayoutControlItem34.Text = "Attribut"
Me.LayoutControlItem34.TextSize = New System.Drawing.Size(163, 13)
'
@@ -1484,6 +1674,7 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem40.Control = Me.SQL_ACTIVECheckBox
Me.LayoutControlItem40.Location = New System.Drawing.Point(190, 101)
Me.LayoutControlItem40.Name = "LayoutControlItem40"
+ Me.LayoutControlItem40.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
Me.LayoutControlItem40.Size = New System.Drawing.Size(115, 56)
Me.LayoutControlItem40.Text = "SQL ACTIVE:"
Me.LayoutControlItem40.TextSize = New System.Drawing.Size(0, 0)
@@ -1493,7 +1684,7 @@ Partial Class frmAdmin_Globix
'
Me.LayoutControlItem37.AppearanceItemCaption.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
Me.LayoutControlItem37.AppearanceItemCaption.Options.UseForeColor = True
- Me.LayoutControlItem37.Control = Me.ComboBoxEdit1
+ Me.LayoutControlItem37.Control = Me.ComboBoxEditAAttrFileParam
Me.LayoutControlItem37.Location = New System.Drawing.Point(687, 61)
Me.LayoutControlItem37.Name = "LayoutControlItem37"
Me.LayoutControlItem37.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
@@ -1525,63 +1716,818 @@ Partial Class frmAdmin_Globix
'EmptySpaceItem4
'
Me.EmptySpaceItem4.AllowHotTrack = False
- Me.EmptySpaceItem4.Location = New System.Drawing.Point(674, 30)
+ Me.EmptySpaceItem4.Location = New System.Drawing.Point(785, 30)
Me.EmptySpaceItem4.Name = "EmptySpaceItem4"
- Me.EmptySpaceItem4.Size = New System.Drawing.Size(484, 31)
+ Me.EmptySpaceItem4.Size = New System.Drawing.Size(373, 31)
Me.EmptySpaceItem4.TextSize = New System.Drawing.Size(0, 0)
'
'ADDED_WHOAutoAttribut
'
Me.ADDED_WHOAutoAttribut.Control = Me.ADDED_WHOTextBoxAutoAttribut
- Me.ADDED_WHOAutoAttribut.Location = New System.Drawing.Point(190, 157)
+ Me.ADDED_WHOAutoAttribut.Location = New System.Drawing.Point(190, 191)
Me.ADDED_WHOAutoAttribut.Name = "ADDED_WHOAutoAttribut"
- Me.ADDED_WHOAutoAttribut.Size = New System.Drawing.Size(484, 24)
+ Me.ADDED_WHOAutoAttribut.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.ADDED_WHOAutoAttribut.Size = New System.Drawing.Size(484, 30)
Me.ADDED_WHOAutoAttribut.Text = "Erstellt wer"
Me.ADDED_WHOAutoAttribut.TextSize = New System.Drawing.Size(163, 13)
'
'LayoutControlItem41
'
Me.LayoutControlItem41.Control = Me.TextEdit3
- Me.LayoutControlItem41.Location = New System.Drawing.Point(190, 181)
+ Me.LayoutControlItem41.Location = New System.Drawing.Point(190, 221)
Me.LayoutControlItem41.Name = "LayoutControlItem41"
- Me.LayoutControlItem41.Size = New System.Drawing.Size(484, 126)
+ Me.LayoutControlItem41.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem41.Size = New System.Drawing.Size(484, 30)
Me.LayoutControlItem41.Text = "Erstellt wann"
Me.LayoutControlItem41.TextSize = New System.Drawing.Size(163, 13)
'
'CHANGED_WHOItemAutoAttribut
'
Me.CHANGED_WHOItemAutoAttribut.Control = Me.CHANGED_WHOTextEditAutoAttribut
- Me.CHANGED_WHOItemAutoAttribut.Location = New System.Drawing.Point(674, 157)
+ Me.CHANGED_WHOItemAutoAttribut.Location = New System.Drawing.Point(674, 191)
Me.CHANGED_WHOItemAutoAttribut.Name = "CHANGED_WHOItemAutoAttribut"
- Me.CHANGED_WHOItemAutoAttribut.Size = New System.Drawing.Size(484, 24)
+ Me.CHANGED_WHOItemAutoAttribut.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.CHANGED_WHOItemAutoAttribut.Size = New System.Drawing.Size(484, 30)
Me.CHANGED_WHOItemAutoAttribut.Text = "Geändert wer"
Me.CHANGED_WHOItemAutoAttribut.TextSize = New System.Drawing.Size(163, 13)
'
'LayoutControlItem43
'
Me.LayoutControlItem43.Control = Me.TextEdit5
- Me.LayoutControlItem43.Location = New System.Drawing.Point(674, 181)
+ Me.LayoutControlItem43.Location = New System.Drawing.Point(674, 221)
Me.LayoutControlItem43.Name = "LayoutControlItem43"
- Me.LayoutControlItem43.Size = New System.Drawing.Size(484, 126)
+ Me.LayoutControlItem43.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem43.Size = New System.Drawing.Size(484, 30)
Me.LayoutControlItem43.Text = "Geändert wann"
Me.LayoutControlItem43.TextSize = New System.Drawing.Size(163, 13)
'
+ 'LayoutControlItem45
+ '
+ Me.LayoutControlItem45.Control = Me.CONNECTION_IDTextBox1
+ Me.LayoutControlItem45.Location = New System.Drawing.Point(305, 127)
+ Me.LayoutControlItem45.Name = "LayoutControlItem45"
+ Me.LayoutControlItem45.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem45.Size = New System.Drawing.Size(89, 30)
+ Me.LayoutControlItem45.Text = "Conn ID:"
+ Me.LayoutControlItem45.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize
+ Me.LayoutControlItem45.TextSize = New System.Drawing.Size(45, 13)
+ Me.LayoutControlItem45.TextToControlDistance = 5
+ '
+ 'LayoutControlItem44
+ '
+ Me.LayoutControlItem44.Control = Me.ListBox1
+ Me.LayoutControlItem44.Location = New System.Drawing.Point(0, 0)
+ Me.LayoutControlItem44.Name = "LayoutControlItem44"
+ Me.LayoutControlItem44.Size = New System.Drawing.Size(190, 251)
+ Me.LayoutControlItem44.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize
+ Me.LayoutControlItem44.TextSize = New System.Drawing.Size(0, 0)
+ Me.LayoutControlItem44.TextToControlDistance = 0
+ Me.LayoutControlItem44.TextVisible = False
+ '
+ 'EmptySpaceItem5
+ '
+ Me.EmptySpaceItem5.AllowHotTrack = False
+ Me.EmptySpaceItem5.Location = New System.Drawing.Point(190, 157)
+ Me.EmptySpaceItem5.Name = "EmptySpaceItem5"
+ Me.EmptySpaceItem5.Size = New System.Drawing.Size(968, 34)
+ Me.EmptySpaceItem5.TextSize = New System.Drawing.Size(0, 0)
+ '
'XtraTabPageDynamicFolder
'
+ Me.XtraTabPageDynamicFolder.Controls.Add(Me.LayoutControl1)
Me.XtraTabPageDynamicFolder.ImageOptions.SvgImage = CType(resources.GetObject("XtraTabPageDynamicFolder.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
Me.XtraTabPageDynamicFolder.ImageOptions.SvgImageSize = New System.Drawing.Size(16, 16)
Me.XtraTabPageDynamicFolder.Name = "XtraTabPageDynamicFolder"
- Me.XtraTabPageDynamicFolder.Size = New System.Drawing.Size(1178, 327)
+ Me.XtraTabPageDynamicFolder.Size = New System.Drawing.Size(1111, 272)
Me.XtraTabPageDynamicFolder.Text = "Dynamischer Ordnerpfad"
'
+ 'LayoutControl1
+ '
+ Me.LayoutControl1.Controls.Add(Me.cmbAllAttributes)
+ Me.LayoutControl1.Controls.Add(Me.SimpleButton3)
+ Me.LayoutControl1.Controls.Add(Me.txtcrFoldermanuell)
+ Me.LayoutControl1.Controls.Add(Me.cmbCrFolderDate)
+ Me.LayoutControl1.Controls.Add(Me.Label1)
+ Me.LayoutControl1.Controls.Add(Me.FOLDER_FOR_INDEXTextEdit)
+ Me.LayoutControl1.Dock = System.Windows.Forms.DockStyle.Fill
+ Me.LayoutControl1.Location = New System.Drawing.Point(0, 0)
+ Me.LayoutControl1.Name = "LayoutControl1"
+ Me.LayoutControl1.Root = Me.LayoutControlGroup4
+ Me.LayoutControl1.Size = New System.Drawing.Size(1111, 272)
+ Me.LayoutControl1.TabIndex = 15
+ Me.LayoutControl1.Text = "LayoutControl1"
+ '
+ 'SimpleButton3
+ '
+ Me.SimpleButton3.ImageOptions.SvgImage = CType(resources.GetObject("SimpleButton3.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
+ Me.SimpleButton3.Location = New System.Drawing.Point(171, 52)
+ Me.SimpleButton3.Name = "SimpleButton3"
+ Me.SimpleButton3.Size = New System.Drawing.Size(928, 36)
+ Me.SimpleButton3.StyleController = Me.LayoutControl1
+ Me.SimpleButton3.TabIndex = 9
+ Me.SimpleButton3.Text = "Ordnerpfad anhängen"
+ '
+ 'txtcrFoldermanuell
+ '
+ Me.txtcrFoldermanuell.Location = New System.Drawing.Point(260, 157)
+ Me.txtcrFoldermanuell.MenuManager = Me.RibbonControl1
+ Me.txtcrFoldermanuell.Name = "txtcrFoldermanuell"
+ Me.txtcrFoldermanuell.Size = New System.Drawing.Size(836, 20)
+ Me.txtcrFoldermanuell.StyleController = Me.LayoutControl1
+ Me.txtcrFoldermanuell.TabIndex = 8
+ '
+ 'cmbCrFolderDate
+ '
+ Me.cmbCrFolderDate.Font = New System.Drawing.Font("Segoe UI", 9.0!)
+ Me.cmbCrFolderDate.FormattingEnabled = True
+ Me.cmbCrFolderDate.Items.AddRange(New Object() {"YYYY/MM/DD", "YYYY/MM", "YYYY", "YYYY-MM", "YY_MM_DD", "YYYY_MM_DD", "DD_MM_YY", "DD_MM_YYYY", "YYMMDD", "YYYYMMDD", "DDMMYY", "DDMMYYYY"})
+ Me.cmbCrFolderDate.Location = New System.Drawing.Point(260, 126)
+ Me.cmbCrFolderDate.Name = "cmbCrFolderDate"
+ Me.cmbCrFolderDate.Size = New System.Drawing.Size(836, 23)
+ Me.cmbCrFolderDate.TabIndex = 7
+ '
+ 'Label1
+ '
+ Me.Label1.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.Label1.Location = New System.Drawing.Point(12, 52)
+ Me.Label1.Name = "Label1"
+ Me.Label1.Size = New System.Drawing.Size(155, 128)
+ Me.Label1.TabIndex = 5
+ Me.Label1.Text = "Neuer Unterordner"
+ '
+ 'FOLDER_FOR_INDEXTextEdit
+ '
+ Me.FOLDER_FOR_INDEXTextEdit.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "FOLDER_FOR_INDEX", True))
+ Me.FOLDER_FOR_INDEXTextEdit.Location = New System.Drawing.Point(101, 15)
+ Me.FOLDER_FOR_INDEXTextEdit.MenuManager = Me.RibbonControl1
+ Me.FOLDER_FOR_INDEXTextEdit.Name = "FOLDER_FOR_INDEXTextEdit"
+ Me.FOLDER_FOR_INDEXTextEdit.Size = New System.Drawing.Size(995, 20)
+ Me.FOLDER_FOR_INDEXTextEdit.StyleController = Me.LayoutControl1
+ Me.FOLDER_FOR_INDEXTextEdit.TabIndex = 4
+ '
+ 'LayoutControlGroup4
+ '
+ Me.LayoutControlGroup4.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
+ Me.LayoutControlGroup4.GroupBordersVisible = False
+ Me.LayoutControlGroup4.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem47, Me.EmptySpaceItem7, Me.LayoutControlItem48, Me.LayoutControlItem50, Me.LayoutControlItem51, Me.EmptySpaceItem8, Me.LayoutControlItem52, Me.LayoutControlItem49})
+ Me.LayoutControlGroup4.Name = "LayoutControlGroup4"
+ Me.LayoutControlGroup4.Size = New System.Drawing.Size(1111, 272)
+ Me.LayoutControlGroup4.TextVisible = False
+ '
+ 'EmptySpaceItem7
+ '
+ Me.EmptySpaceItem7.AllowHotTrack = False
+ Me.EmptySpaceItem7.Location = New System.Drawing.Point(0, 172)
+ Me.EmptySpaceItem7.Name = "EmptySpaceItem7"
+ Me.EmptySpaceItem7.Size = New System.Drawing.Size(1091, 80)
+ Me.EmptySpaceItem7.TextSize = New System.Drawing.Size(0, 0)
+ '
+ 'LayoutControlItem48
+ '
+ Me.LayoutControlItem48.Control = Me.Label1
+ Me.LayoutControlItem48.Location = New System.Drawing.Point(0, 40)
+ Me.LayoutControlItem48.Name = "LayoutControlItem48"
+ Me.LayoutControlItem48.Size = New System.Drawing.Size(159, 132)
+ Me.LayoutControlItem48.TextSize = New System.Drawing.Size(0, 0)
+ Me.LayoutControlItem48.TextVisible = False
+ '
+ 'LayoutControlItem50
+ '
+ Me.LayoutControlItem50.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem50.AppearanceItemCaption.Options.UseFont = True
+ Me.LayoutControlItem50.Control = Me.cmbCrFolderDate
+ Me.LayoutControlItem50.Location = New System.Drawing.Point(159, 111)
+ Me.LayoutControlItem50.Name = "LayoutControlItem50"
+ Me.LayoutControlItem50.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem50.Size = New System.Drawing.Size(932, 31)
+ Me.LayoutControlItem50.Text = "Datum-Struktur"
+ Me.LayoutControlItem50.TextSize = New System.Drawing.Size(83, 15)
+ '
+ 'LayoutControlItem51
+ '
+ Me.LayoutControlItem51.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem51.AppearanceItemCaption.Options.UseFont = True
+ Me.LayoutControlItem51.Control = Me.txtcrFoldermanuell
+ Me.LayoutControlItem51.Location = New System.Drawing.Point(159, 142)
+ Me.LayoutControlItem51.Name = "LayoutControlItem51"
+ Me.LayoutControlItem51.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem51.Size = New System.Drawing.Size(932, 30)
+ Me.LayoutControlItem51.Text = "oder manuell"
+ Me.LayoutControlItem51.TextSize = New System.Drawing.Size(83, 15)
+ '
+ 'EmptySpaceItem8
+ '
+ Me.EmptySpaceItem8.AllowHotTrack = False
+ Me.EmptySpaceItem8.Location = New System.Drawing.Point(0, 30)
+ Me.EmptySpaceItem8.Name = "EmptySpaceItem8"
+ Me.EmptySpaceItem8.Size = New System.Drawing.Size(1091, 10)
+ Me.EmptySpaceItem8.TextSize = New System.Drawing.Size(0, 0)
+ '
+ 'LayoutControlItem52
+ '
+ Me.LayoutControlItem52.Control = Me.SimpleButton3
+ Me.LayoutControlItem52.Location = New System.Drawing.Point(159, 40)
+ Me.LayoutControlItem52.Name = "LayoutControlItem52"
+ Me.LayoutControlItem52.Size = New System.Drawing.Size(932, 40)
+ Me.LayoutControlItem52.TextSize = New System.Drawing.Size(0, 0)
+ Me.LayoutControlItem52.TextVisible = False
+ '
'XtraTabPageAutoSelect
'
+ Me.XtraTabPageAutoSelect.Controls.Add(Me.LayoutControl2)
+ Me.XtraTabPageAutoSelect.Controls.Add(Me.ListBox2)
Me.XtraTabPageAutoSelect.ImageOptions.SvgImage = CType(resources.GetObject("XtraTabPageAutoSelect.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
Me.XtraTabPageAutoSelect.ImageOptions.SvgImageSize = New System.Drawing.Size(16, 16)
Me.XtraTabPageAutoSelect.Name = "XtraTabPageAutoSelect"
- Me.XtraTabPageAutoSelect.Size = New System.Drawing.Size(1178, 327)
+ Me.XtraTabPageAutoSelect.Size = New System.Drawing.Size(1178, 324)
Me.XtraTabPageAutoSelect.Text = "Automatische Profilauswahl"
'
+ 'LayoutControl2
+ '
+ Me.LayoutControl2.Controls.Add(Me.ChangedWhenAutoSelect)
+ Me.LayoutControl2.Controls.Add(Me.TextEdit8)
+ Me.LayoutControl2.Controls.Add(Me.AddedWhoAutoSelect)
+ Me.LayoutControl2.Controls.Add(Me.ChangedWhoAutoSelect)
+ Me.LayoutControl2.Controls.Add(Me.txtDateinameTest)
+ Me.LayoutControl2.Controls.Add(Me.SimpleButton4)
+ Me.LayoutControl2.Controls.Add(Me.REGEXTextBox)
+ Me.LayoutControl2.Controls.Add(Me.GUIDTextBoxAutoSelect)
+ Me.LayoutControl2.Dock = System.Windows.Forms.DockStyle.Fill
+ Me.LayoutControl2.Location = New System.Drawing.Point(193, 0)
+ Me.LayoutControl2.Name = "LayoutControl2"
+ Me.LayoutControl2.Root = Me.LayoutControlGroup5
+ Me.LayoutControl2.Size = New System.Drawing.Size(985, 324)
+ Me.LayoutControl2.TabIndex = 1
+ Me.LayoutControl2.Text = "LayoutControl2"
+ '
+ 'ChangedWhenAutoSelect
+ '
+ Me.ChangedWhenAutoSelect.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "CHANGED_WHEN", True))
+ Me.ChangedWhenAutoSelect.Enabled = False
+ Me.ChangedWhenAutoSelect.Location = New System.Drawing.Point(531, 117)
+ Me.ChangedWhenAutoSelect.MenuManager = Me.RibbonControl1
+ Me.ChangedWhenAutoSelect.Name = "ChangedWhenAutoSelect"
+ Me.ChangedWhenAutoSelect.Size = New System.Drawing.Size(304, 20)
+ Me.ChangedWhenAutoSelect.StyleController = Me.LayoutControl2
+ Me.ChangedWhenAutoSelect.TabIndex = 16
+ '
+ 'TBGI_REGEX_DOCTYPEBindingSource
+ '
+ Me.TBGI_REGEX_DOCTYPEBindingSource.DataMember = "TBGI_REGEX_DOCTYPE"
+ Me.TBGI_REGEX_DOCTYPEBindingSource.DataSource = Me.GlobixDataset
+ '
+ 'TextEdit8
+ '
+ Me.TextEdit8.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "ADDED_WHEN", True))
+ Me.TextEdit8.Enabled = False
+ Me.TextEdit8.Location = New System.Drawing.Point(116, 117)
+ Me.TextEdit8.MenuManager = Me.RibbonControl1
+ Me.TextEdit8.Name = "TextEdit8"
+ Me.TextEdit8.Size = New System.Drawing.Size(304, 20)
+ Me.TextEdit8.StyleController = Me.LayoutControl2
+ Me.TextEdit8.TabIndex = 15
+ '
+ 'AddedWhoAutoSelect
+ '
+ Me.AddedWhoAutoSelect.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "ADDED_WHO", True))
+ Me.AddedWhoAutoSelect.Enabled = False
+ Me.AddedWhoAutoSelect.Location = New System.Drawing.Point(116, 87)
+ Me.AddedWhoAutoSelect.MenuManager = Me.RibbonControl1
+ Me.AddedWhoAutoSelect.Name = "AddedWhoAutoSelect"
+ Me.AddedWhoAutoSelect.Size = New System.Drawing.Size(304, 20)
+ Me.AddedWhoAutoSelect.StyleController = Me.LayoutControl2
+ Me.AddedWhoAutoSelect.TabIndex = 14
+ '
+ 'ChangedWhoAutoSelect
+ '
+ Me.ChangedWhoAutoSelect.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "CHANGED_WHO", True))
+ Me.ChangedWhoAutoSelect.Enabled = False
+ Me.ChangedWhoAutoSelect.Location = New System.Drawing.Point(531, 87)
+ Me.ChangedWhoAutoSelect.MenuManager = Me.RibbonControl1
+ Me.ChangedWhoAutoSelect.Name = "ChangedWhoAutoSelect"
+ Me.ChangedWhoAutoSelect.Size = New System.Drawing.Size(304, 20)
+ Me.ChangedWhoAutoSelect.StyleController = Me.LayoutControl2
+ Me.ChangedWhoAutoSelect.TabIndex = 13
+ '
+ 'txtDateinameTest
+ '
+ Me.txtDateinameTest.Location = New System.Drawing.Point(113, 60)
+ Me.txtDateinameTest.Name = "txtDateinameTest"
+ Me.txtDateinameTest.Size = New System.Drawing.Size(725, 20)
+ Me.txtDateinameTest.TabIndex = 12
+ Me.txtDateinameTest.Text = "Example.pdf"
+ '
+ 'SimpleButton4
+ '
+ Me.SimpleButton4.ImageOptions.Image = CType(resources.GetObject("SimpleButton4.ImageOptions.Image"), System.Drawing.Image)
+ Me.SimpleButton4.Location = New System.Drawing.Point(842, 36)
+ Me.SimpleButton4.Name = "SimpleButton4"
+ Me.SimpleButton4.Size = New System.Drawing.Size(97, 36)
+ Me.SimpleButton4.StyleController = Me.LayoutControl2
+ Me.SimpleButton4.TabIndex = 11
+ Me.SimpleButton4.Text = "Test RegEx"
+ '
+ 'REGEXTextBox
+ '
+ Me.REGEXTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "REGEX", True))
+ Me.REGEXTextBox.Location = New System.Drawing.Point(113, 36)
+ Me.REGEXTextBox.Name = "REGEXTextBox"
+ Me.REGEXTextBox.Size = New System.Drawing.Size(725, 20)
+ Me.REGEXTextBox.TabIndex = 6
+ '
+ 'GUIDTextBoxAutoSelect
+ '
+ Me.GUIDTextBoxAutoSelect.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_REGEX_DOCTYPEBindingSource, "GUID", True))
+ Me.GUIDTextBoxAutoSelect.Location = New System.Drawing.Point(113, 12)
+ Me.GUIDTextBoxAutoSelect.Name = "GUIDTextBoxAutoSelect"
+ Me.GUIDTextBoxAutoSelect.ReadOnly = True
+ Me.GUIDTextBoxAutoSelect.Size = New System.Drawing.Size(63, 20)
+ Me.GUIDTextBoxAutoSelect.TabIndex = 5
+ '
+ 'LayoutControlGroup5
+ '
+ Me.LayoutControlGroup5.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
+ Me.LayoutControlGroup5.GroupBordersVisible = False
+ Me.LayoutControlGroup5.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem55, Me.EmptySpaceItem9, Me.EmptySpaceItem10, Me.LayoutControlItem54, Me.LayoutControlItem53, Me.EmptySpaceItem11, Me.LayoutControlItem57, Me.LayoutControlItem59, Me.LayoutControlItem58, Me.LayoutControlItem56, Me.LayoutControlItem60})
+ Me.LayoutControlGroup5.Name = "LayoutControlGroup5"
+ Me.LayoutControlGroup5.Size = New System.Drawing.Size(985, 324)
+ Me.LayoutControlGroup5.TextVisible = False
+ '
+ 'LayoutControlItem55
+ '
+ Me.LayoutControlItem55.Control = Me.REGEXTextBox
+ Me.LayoutControlItem55.Location = New System.Drawing.Point(0, 24)
+ Me.LayoutControlItem55.Name = "LayoutControlItem55"
+ Me.LayoutControlItem55.Size = New System.Drawing.Size(830, 24)
+ Me.LayoutControlItem55.Text = "Regular Expression"
+ Me.LayoutControlItem55.TextSize = New System.Drawing.Size(98, 13)
+ '
+ 'EmptySpaceItem9
+ '
+ Me.EmptySpaceItem9.AllowHotTrack = False
+ Me.EmptySpaceItem9.Location = New System.Drawing.Point(830, 64)
+ Me.EmptySpaceItem9.Name = "EmptySpaceItem9"
+ Me.EmptySpaceItem9.Size = New System.Drawing.Size(135, 240)
+ Me.EmptySpaceItem9.TextSize = New System.Drawing.Size(0, 0)
+ '
+ 'EmptySpaceItem10
+ '
+ Me.EmptySpaceItem10.AllowHotTrack = False
+ Me.EmptySpaceItem10.Location = New System.Drawing.Point(931, 24)
+ Me.EmptySpaceItem10.Name = "EmptySpaceItem10"
+ Me.EmptySpaceItem10.Size = New System.Drawing.Size(34, 40)
+ Me.EmptySpaceItem10.TextSize = New System.Drawing.Size(0, 0)
+ '
+ 'LayoutControlItem54
+ '
+ Me.LayoutControlItem54.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI Semibold", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem54.AppearanceItemCaption.Options.UseFont = True
+ Me.LayoutControlItem54.Control = Me.GUIDTextBoxAutoSelect
+ Me.LayoutControlItem54.Enabled = False
+ Me.LayoutControlItem54.Location = New System.Drawing.Point(0, 0)
+ Me.LayoutControlItem54.Name = "LayoutControlItem54"
+ Me.LayoutControlItem54.Size = New System.Drawing.Size(168, 24)
+ Me.LayoutControlItem54.Text = "ID"
+ Me.LayoutControlItem54.TextSize = New System.Drawing.Size(98, 13)
+ '
+ 'LayoutControlItem53
+ '
+ Me.LayoutControlItem53.Control = Me.SimpleButton4
+ Me.LayoutControlItem53.Location = New System.Drawing.Point(830, 24)
+ Me.LayoutControlItem53.Name = "LayoutControlItem53"
+ Me.LayoutControlItem53.Size = New System.Drawing.Size(101, 40)
+ Me.LayoutControlItem53.TextSize = New System.Drawing.Size(0, 0)
+ Me.LayoutControlItem53.TextVisible = False
+ '
+ 'EmptySpaceItem11
+ '
+ Me.EmptySpaceItem11.AllowHotTrack = False
+ Me.EmptySpaceItem11.Location = New System.Drawing.Point(168, 0)
+ Me.EmptySpaceItem11.Name = "EmptySpaceItem11"
+ Me.EmptySpaceItem11.Size = New System.Drawing.Size(797, 24)
+ Me.EmptySpaceItem11.TextSize = New System.Drawing.Size(0, 0)
+ '
+ 'LayoutControlItem57
+ '
+ Me.LayoutControlItem57.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem57.AppearanceItemCaption.Options.UseFont = True
+ Me.LayoutControlItem57.Control = Me.AddedWhoAutoSelect
+ Me.LayoutControlItem57.Location = New System.Drawing.Point(0, 72)
+ Me.LayoutControlItem57.Name = "LayoutControlItem57"
+ Me.LayoutControlItem57.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem57.Size = New System.Drawing.Size(415, 30)
+ Me.LayoutControlItem57.Text = "Erstellt wer"
+ Me.LayoutControlItem57.TextSize = New System.Drawing.Size(98, 13)
+ '
+ 'LayoutControlItem59
+ '
+ Me.LayoutControlItem59.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem59.AppearanceItemCaption.Options.UseFont = True
+ Me.LayoutControlItem59.Control = Me.ChangedWhenAutoSelect
+ Me.LayoutControlItem59.Location = New System.Drawing.Point(415, 102)
+ Me.LayoutControlItem59.Name = "LayoutControlItem59"
+ Me.LayoutControlItem59.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem59.Size = New System.Drawing.Size(415, 202)
+ Me.LayoutControlItem59.Text = "Geändert wann"
+ Me.LayoutControlItem59.TextSize = New System.Drawing.Size(98, 13)
+ '
+ 'LayoutControlItem58
+ '
+ Me.LayoutControlItem58.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem58.AppearanceItemCaption.Options.UseFont = True
+ Me.LayoutControlItem58.Control = Me.TextEdit8
+ Me.LayoutControlItem58.Location = New System.Drawing.Point(0, 102)
+ Me.LayoutControlItem58.Name = "LayoutControlItem58"
+ Me.LayoutControlItem58.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem58.Size = New System.Drawing.Size(415, 202)
+ Me.LayoutControlItem58.Text = "Erstellt wann"
+ Me.LayoutControlItem58.TextSize = New System.Drawing.Size(98, 13)
+ '
+ 'LayoutControlItem56
+ '
+ Me.LayoutControlItem56.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem56.AppearanceItemCaption.Options.UseFont = True
+ Me.LayoutControlItem56.Control = Me.ChangedWhoAutoSelect
+ Me.LayoutControlItem56.Location = New System.Drawing.Point(415, 72)
+ Me.LayoutControlItem56.Name = "LayoutControlItem56"
+ Me.LayoutControlItem56.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem56.Size = New System.Drawing.Size(415, 30)
+ Me.LayoutControlItem56.Text = "Geändert wer"
+ Me.LayoutControlItem56.TextSize = New System.Drawing.Size(98, 13)
+ '
+ 'LayoutControlItem60
+ '
+ Me.LayoutControlItem60.Control = Me.txtDateinameTest
+ Me.LayoutControlItem60.Location = New System.Drawing.Point(0, 48)
+ Me.LayoutControlItem60.Name = "LayoutControlItem60"
+ Me.LayoutControlItem60.Size = New System.Drawing.Size(830, 24)
+ Me.LayoutControlItem60.Text = "Dateiname für Test"
+ Me.LayoutControlItem60.TextSize = New System.Drawing.Size(98, 13)
+ '
+ 'ListBox2
+ '
+ Me.ListBox2.Dock = System.Windows.Forms.DockStyle.Left
+ Me.ListBox2.FormattingEnabled = True
+ Me.ListBox2.Location = New System.Drawing.Point(0, 0)
+ Me.ListBox2.Name = "ListBox2"
+ Me.ListBox2.Size = New System.Drawing.Size(193, 324)
+ Me.ListBox2.TabIndex = 0
+ '
+ 'XtraTabPage1
+ '
+ Me.XtraTabPage1.Controls.Add(Me.XtraTabControl3)
+ Me.XtraTabPage1.ImageOptions.SvgImage = CType(resources.GetObject("XtraTabPage1.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
+ Me.XtraTabPage1.ImageOptions.SvgImageSize = New System.Drawing.Size(16, 16)
+ Me.XtraTabPage1.Name = "XtraTabPage1"
+ Me.XtraTabPage1.Size = New System.Drawing.Size(1210, 608)
+ Me.XtraTabPage1.Text = "Profil-Zuordnung"
+ '
+ 'XtraTabControl3
+ '
+ Me.XtraTabControl3.AllowDrop = True
+ Me.XtraTabControl3.Dock = System.Windows.Forms.DockStyle.Fill
+ Me.XtraTabControl3.Location = New System.Drawing.Point(0, 0)
+ Me.XtraTabControl3.Name = "XtraTabControl3"
+ Me.XtraTabControl3.SelectedTabPage = Me.XtraTabPage2
+ Me.XtraTabControl3.Size = New System.Drawing.Size(1210, 608)
+ Me.XtraTabControl3.TabIndex = 0
+ Me.XtraTabControl3.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.XtraTabPage2, Me.XtraTabPage3})
+ '
+ 'XtraTabPage2
+ '
+ Me.XtraTabPage2.Controls.Add(Me.SplitContainerControl1)
+ Me.XtraTabPage2.ImageOptions.SvgImage = CType(resources.GetObject("XtraTabPage2.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
+ Me.XtraTabPage2.ImageOptions.SvgImageSize = New System.Drawing.Size(16, 16)
+ Me.XtraTabPage2.Name = "XtraTabPage2"
+ Me.XtraTabPage2.Size = New System.Drawing.Size(1208, 582)
+ Me.XtraTabPage2.Text = "User"
+ '
+ 'SplitContainerControl1
+ '
+ Me.SplitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill
+ Me.SplitContainerControl1.Horizontal = False
+ Me.SplitContainerControl1.Location = New System.Drawing.Point(0, 0)
+ Me.SplitContainerControl1.Name = "SplitContainerControl1"
+ Me.SplitContainerControl1.Panel1.Controls.Add(Me.gridAssignedUsers)
+ Me.SplitContainerControl1.Panel1.Controls.Add(Me.Label2)
+ Me.SplitContainerControl1.Panel1.Text = "Panel1"
+ Me.SplitContainerControl1.Panel2.Controls.Add(Me.gridAvailableUsers)
+ Me.SplitContainerControl1.Panel2.Controls.Add(Me.Label35)
+ Me.SplitContainerControl1.Panel2.Text = "Panel2"
+ Me.SplitContainerControl1.Size = New System.Drawing.Size(1208, 582)
+ Me.SplitContainerControl1.SplitterPosition = 308
+ Me.SplitContainerControl1.TabIndex = 0
+ '
+ 'gridAssignedUsers
+ '
+ Me.gridAssignedUsers.AllowDrop = True
+ Me.gridAssignedUsers.Dock = System.Windows.Forms.DockStyle.Fill
+ Me.gridAssignedUsers.Location = New System.Drawing.Point(0, 30)
+ Me.gridAssignedUsers.MainView = Me.viewAssignedUsers
+ Me.gridAssignedUsers.MenuManager = Me.RibbonControl1
+ Me.gridAssignedUsers.Name = "gridAssignedUsers"
+ Me.gridAssignedUsers.Size = New System.Drawing.Size(1208, 278)
+ Me.gridAssignedUsers.TabIndex = 2
+ Me.gridAssignedUsers.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.viewAssignedUsers})
+ '
+ 'viewAssignedUsers
+ '
+ Me.viewAssignedUsers.Appearance.EvenRow.BackColor = System.Drawing.Color.PaleTurquoise
+ Me.viewAssignedUsers.Appearance.EvenRow.Options.UseBackColor = True
+ Me.viewAssignedUsers.Appearance.FocusedRow.BackColor = System.Drawing.Color.Khaki
+ Me.viewAssignedUsers.Appearance.FocusedRow.Options.UseBackColor = True
+ Me.viewAssignedUsers.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.GridColumn1, Me.GridColumn3, Me.GridColumn5, Me.GridColumn4})
+ Me.viewAssignedUsers.GridControl = Me.gridAssignedUsers
+ Me.viewAssignedUsers.Name = "viewAssignedUsers"
+ Me.viewAssignedUsers.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.[False]
+ Me.viewAssignedUsers.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.[False]
+ Me.viewAssignedUsers.OptionsBehavior.Editable = False
+ Me.viewAssignedUsers.OptionsBehavior.ReadOnly = True
+ Me.viewAssignedUsers.OptionsSelection.EnableAppearanceFocusedCell = False
+ Me.viewAssignedUsers.OptionsView.ColumnAutoWidth = False
+ Me.viewAssignedUsers.OptionsView.ShowAutoFilterRow = True
+ Me.viewAssignedUsers.OptionsView.ShowGroupPanel = False
+ '
+ 'GridColumn1
+ '
+ Me.GridColumn1.Caption = "GUID"
+ Me.GridColumn1.FieldName = "GUID"
+ Me.GridColumn1.Name = "GridColumn1"
+ Me.GridColumn1.Visible = True
+ Me.GridColumn1.VisibleIndex = 0
+ '
+ 'GridColumn3
+ '
+ Me.GridColumn3.Caption = "USERNAME"
+ Me.GridColumn3.FieldName = "USERNAME"
+ Me.GridColumn3.Name = "GridColumn3"
+ Me.GridColumn3.Visible = True
+ Me.GridColumn3.VisibleIndex = 1
+ Me.GridColumn3.Width = 120
+ '
+ 'GridColumn5
+ '
+ Me.GridColumn5.Caption = "NAME"
+ Me.GridColumn5.FieldName = "NAME"
+ Me.GridColumn5.Name = "GridColumn5"
+ Me.GridColumn5.Visible = True
+ Me.GridColumn5.VisibleIndex = 2
+ Me.GridColumn5.Width = 150
+ '
+ 'GridColumn4
+ '
+ Me.GridColumn4.Caption = "EMAIL"
+ Me.GridColumn4.FieldName = "EMAIL"
+ Me.GridColumn4.Name = "GridColumn4"
+ Me.GridColumn4.Visible = True
+ Me.GridColumn4.VisibleIndex = 3
+ Me.GridColumn4.Width = 150
+ '
+ 'Label2
+ '
+ Me.Label2.Dock = System.Windows.Forms.DockStyle.Top
+ Me.Label2.ImeMode = System.Windows.Forms.ImeMode.NoControl
+ Me.Label2.Location = New System.Drawing.Point(0, 0)
+ Me.Label2.Name = "Label2"
+ Me.Label2.Size = New System.Drawing.Size(1208, 30)
+ Me.Label2.TabIndex = 1
+ Me.Label2.Text = "Zugeordnete Benutzer"
+ Me.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
+ '
+ 'gridAvailableUsers
+ '
+ Me.gridAvailableUsers.AllowDrop = True
+ Me.gridAvailableUsers.Dock = System.Windows.Forms.DockStyle.Fill
+ Me.gridAvailableUsers.Location = New System.Drawing.Point(0, 30)
+ Me.gridAvailableUsers.MainView = Me.viewAvailableUsers
+ Me.gridAvailableUsers.MenuManager = Me.RibbonControl1
+ Me.gridAvailableUsers.Name = "gridAvailableUsers"
+ Me.gridAvailableUsers.Size = New System.Drawing.Size(1208, 234)
+ Me.gridAvailableUsers.TabIndex = 2
+ Me.gridAvailableUsers.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.viewAvailableUsers})
+ '
+ 'viewAvailableUsers
+ '
+ Me.viewAvailableUsers.Appearance.EvenRow.BackColor = System.Drawing.Color.PaleTurquoise
+ Me.viewAvailableUsers.Appearance.EvenRow.Options.UseBackColor = True
+ Me.viewAvailableUsers.Appearance.FocusedRow.BackColor = System.Drawing.Color.Khaki
+ Me.viewAvailableUsers.Appearance.FocusedRow.Options.UseBackColor = True
+ Me.viewAvailableUsers.Appearance.SelectedRow.BackColor = System.Drawing.Color.Khaki
+ Me.viewAvailableUsers.Appearance.SelectedRow.Options.UseBackColor = True
+ Me.viewAvailableUsers.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.GridColumn6, Me.GridColumn7, Me.GridColumn9, Me.GridColumn8})
+ Me.viewAvailableUsers.GridControl = Me.gridAvailableUsers
+ Me.viewAvailableUsers.Name = "viewAvailableUsers"
+ Me.viewAvailableUsers.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.[False]
+ Me.viewAvailableUsers.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.[False]
+ Me.viewAvailableUsers.OptionsBehavior.Editable = False
+ Me.viewAvailableUsers.OptionsBehavior.ReadOnly = True
+ Me.viewAvailableUsers.OptionsSelection.EnableAppearanceFocusedCell = False
+ Me.viewAvailableUsers.OptionsView.ColumnAutoWidth = False
+ Me.viewAvailableUsers.OptionsView.ShowAutoFilterRow = True
+ Me.viewAvailableUsers.OptionsView.ShowGroupPanel = False
+ '
+ 'GridColumn6
+ '
+ Me.GridColumn6.Caption = "GUID"
+ Me.GridColumn6.FieldName = "GUID"
+ Me.GridColumn6.Name = "GridColumn6"
+ Me.GridColumn6.Visible = True
+ Me.GridColumn6.VisibleIndex = 0
+ '
+ 'GridColumn7
+ '
+ Me.GridColumn7.Caption = "USERNAME"
+ Me.GridColumn7.FieldName = "USERNAME"
+ Me.GridColumn7.Name = "GridColumn7"
+ Me.GridColumn7.Visible = True
+ Me.GridColumn7.VisibleIndex = 1
+ Me.GridColumn7.Width = 120
+ '
+ 'GridColumn9
+ '
+ Me.GridColumn9.Caption = "NAME"
+ Me.GridColumn9.FieldName = "NAME"
+ Me.GridColumn9.Name = "GridColumn9"
+ Me.GridColumn9.Visible = True
+ Me.GridColumn9.VisibleIndex = 2
+ Me.GridColumn9.Width = 150
+ '
+ 'GridColumn8
+ '
+ Me.GridColumn8.Caption = "EMAIL"
+ Me.GridColumn8.FieldName = "EMAIL"
+ Me.GridColumn8.Name = "GridColumn8"
+ Me.GridColumn8.Visible = True
+ Me.GridColumn8.VisibleIndex = 3
+ Me.GridColumn8.Width = 150
+ '
+ 'Label35
+ '
+ Me.Label35.Dock = System.Windows.Forms.DockStyle.Top
+ Me.Label35.ImeMode = System.Windows.Forms.ImeMode.NoControl
+ Me.Label35.Location = New System.Drawing.Point(0, 0)
+ Me.Label35.Name = "Label35"
+ Me.Label35.Size = New System.Drawing.Size(1208, 30)
+ Me.Label35.TabIndex = 1
+ Me.Label35.Text = "Verfügbare Benutzer"
+ Me.Label35.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
+ '
+ 'XtraTabPage3
+ '
+ Me.XtraTabPage3.Controls.Add(Me.SplitContainerControlGroup)
+ Me.XtraTabPage3.ImageOptions.SvgImage = CType(resources.GetObject("XtraTabPage3.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
+ Me.XtraTabPage3.ImageOptions.SvgImageSize = New System.Drawing.Size(16, 16)
+ Me.XtraTabPage3.Name = "XtraTabPage3"
+ Me.XtraTabPage3.Size = New System.Drawing.Size(1208, 582)
+ Me.XtraTabPage3.Text = "Gruppen"
+ '
+ 'SplitContainerControlGroup
+ '
+ Me.SplitContainerControlGroup.Dock = System.Windows.Forms.DockStyle.Fill
+ Me.SplitContainerControlGroup.Horizontal = False
+ Me.SplitContainerControlGroup.Location = New System.Drawing.Point(0, 0)
+ Me.SplitContainerControlGroup.Name = "SplitContainerControlGroup"
+ Me.SplitContainerControlGroup.Panel1.Controls.Add(Me.gridAssignedGroups)
+ Me.SplitContainerControlGroup.Panel1.Controls.Add(Me.Label13)
+ Me.SplitContainerControlGroup.Panel1.Text = "Panel1"
+ Me.SplitContainerControlGroup.Panel2.Controls.Add(Me.gridAvailableGroups)
+ Me.SplitContainerControlGroup.Panel2.Controls.Add(Me.Label14)
+ Me.SplitContainerControlGroup.Panel2.Text = "Panel2"
+ Me.SplitContainerControlGroup.Size = New System.Drawing.Size(1208, 582)
+ Me.SplitContainerControlGroup.SplitterPosition = 315
+ Me.SplitContainerControlGroup.TabIndex = 0
+ '
+ 'gridAssignedGroups
+ '
+ Me.gridAssignedGroups.AllowDrop = True
+ Me.gridAssignedGroups.Dock = System.Windows.Forms.DockStyle.Fill
+ Me.gridAssignedGroups.EmbeddedNavigator.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.[True]
+ Me.gridAssignedGroups.EmbeddedNavigator.Anchor = System.Windows.Forms.AnchorStyles.None
+ Me.gridAssignedGroups.EmbeddedNavigator.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None
+ Me.gridAssignedGroups.EmbeddedNavigator.ImeMode = System.Windows.Forms.ImeMode.NoControl
+ Me.gridAssignedGroups.EmbeddedNavigator.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.None
+ Me.gridAssignedGroups.EmbeddedNavigator.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application
+ Me.gridAssignedGroups.Location = New System.Drawing.Point(0, 30)
+ Me.gridAssignedGroups.MainView = Me.viewAssignedGroups
+ Me.gridAssignedGroups.Name = "gridAssignedGroups"
+ Me.gridAssignedGroups.ShowOnlyPredefinedDetails = True
+ Me.gridAssignedGroups.Size = New System.Drawing.Size(1208, 285)
+ Me.gridAssignedGroups.TabIndex = 90
+ Me.gridAssignedGroups.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.viewAssignedGroups})
+ '
+ 'viewAssignedGroups
+ '
+ Me.viewAssignedGroups.Appearance.EvenRow.BackColor = System.Drawing.Color.PaleTurquoise
+ Me.viewAssignedGroups.Appearance.EvenRow.Options.UseBackColor = True
+ Me.viewAssignedGroups.Appearance.FocusedRow.BackColor = System.Drawing.Color.Khaki
+ Me.viewAssignedGroups.Appearance.FocusedRow.Options.UseBackColor = True
+ Me.viewAssignedGroups.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colNAME, Me.colGUID})
+ Me.viewAssignedGroups.GridControl = Me.gridAssignedGroups
+ Me.viewAssignedGroups.Name = "viewAssignedGroups"
+ Me.viewAssignedGroups.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.[False]
+ Me.viewAssignedGroups.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.[False]
+ Me.viewAssignedGroups.OptionsBehavior.Editable = False
+ Me.viewAssignedGroups.OptionsClipboard.CopyColumnHeaders = DevExpress.Utils.DefaultBoolean.[False]
+ Me.viewAssignedGroups.OptionsSelection.EnableAppearanceFocusedCell = False
+ Me.viewAssignedGroups.OptionsView.ColumnAutoWidth = False
+ Me.viewAssignedGroups.OptionsView.EnableAppearanceEvenRow = True
+ Me.viewAssignedGroups.OptionsView.ShowAutoFilterRow = True
+ Me.viewAssignedGroups.OptionsView.ShowGroupPanel = False
+ '
+ 'colNAME
+ '
+ Me.colNAME.Caption = "Name"
+ Me.colNAME.FieldName = "NAME"
+ Me.colNAME.Name = "colNAME"
+ Me.colNAME.Visible = True
+ Me.colNAME.VisibleIndex = 1
+ Me.colNAME.Width = 170
+ '
+ 'colGUID
+ '
+ Me.colGUID.Caption = "GUID"
+ Me.colGUID.FieldName = "GUID"
+ Me.colGUID.Name = "colGUID"
+ Me.colGUID.Visible = True
+ Me.colGUID.VisibleIndex = 0
+ '
+ 'Label13
+ '
+ Me.Label13.Dock = System.Windows.Forms.DockStyle.Top
+ Me.Label13.ImeMode = System.Windows.Forms.ImeMode.NoControl
+ Me.Label13.Location = New System.Drawing.Point(0, 0)
+ Me.Label13.Name = "Label13"
+ Me.Label13.Size = New System.Drawing.Size(1208, 30)
+ Me.Label13.TabIndex = 89
+ Me.Label13.Text = "Zugeordnete Gruppen"
+ Me.Label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
+ '
+ 'gridAvailableGroups
+ '
+ Me.gridAvailableGroups.AllowDrop = True
+ Me.gridAvailableGroups.Dock = System.Windows.Forms.DockStyle.Fill
+ Me.gridAvailableGroups.EmbeddedNavigator.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.[True]
+ Me.gridAvailableGroups.EmbeddedNavigator.Anchor = System.Windows.Forms.AnchorStyles.None
+ Me.gridAvailableGroups.EmbeddedNavigator.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None
+ Me.gridAvailableGroups.EmbeddedNavigator.ImeMode = System.Windows.Forms.ImeMode.NoControl
+ Me.gridAvailableGroups.EmbeddedNavigator.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.None
+ Me.gridAvailableGroups.EmbeddedNavigator.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application
+ Me.gridAvailableGroups.Location = New System.Drawing.Point(0, 30)
+ Me.gridAvailableGroups.MainView = Me.viewAvailableGroups
+ Me.gridAvailableGroups.Name = "gridAvailableGroups"
+ Me.gridAvailableGroups.ShowOnlyPredefinedDetails = True
+ Me.gridAvailableGroups.Size = New System.Drawing.Size(1208, 227)
+ Me.gridAvailableGroups.TabIndex = 89
+ Me.gridAvailableGroups.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.viewAvailableGroups})
+ '
+ 'viewAvailableGroups
+ '
+ Me.viewAvailableGroups.Appearance.EvenRow.BackColor = System.Drawing.Color.PaleTurquoise
+ Me.viewAvailableGroups.Appearance.EvenRow.Options.UseBackColor = True
+ Me.viewAvailableGroups.Appearance.FocusedRow.BackColor = System.Drawing.Color.Khaki
+ Me.viewAvailableGroups.Appearance.FocusedRow.Options.UseBackColor = True
+ Me.viewAvailableGroups.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colGUID2, Me.GridColumn2})
+ Me.viewAvailableGroups.GridControl = Me.gridAvailableGroups
+ Me.viewAvailableGroups.Name = "viewAvailableGroups"
+ Me.viewAvailableGroups.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.[False]
+ Me.viewAvailableGroups.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.[False]
+ Me.viewAvailableGroups.OptionsBehavior.Editable = False
+ Me.viewAvailableGroups.OptionsClipboard.CopyColumnHeaders = DevExpress.Utils.DefaultBoolean.[False]
+ Me.viewAvailableGroups.OptionsSelection.EnableAppearanceFocusedCell = False
+ Me.viewAvailableGroups.OptionsView.ColumnAutoWidth = False
+ Me.viewAvailableGroups.OptionsView.EnableAppearanceEvenRow = True
+ Me.viewAvailableGroups.OptionsView.ShowAutoFilterRow = True
+ Me.viewAvailableGroups.OptionsView.ShowGroupPanel = False
+ '
+ 'colGUID2
+ '
+ Me.colGUID2.Caption = "GUID"
+ Me.colGUID2.FieldName = "GUID"
+ Me.colGUID2.Name = "colGUID2"
+ Me.colGUID2.Visible = True
+ Me.colGUID2.VisibleIndex = 0
+ Me.colGUID2.Width = 106
+ '
+ 'GridColumn2
+ '
+ Me.GridColumn2.Caption = "Name"
+ Me.GridColumn2.FieldName = "NAME"
+ Me.GridColumn2.Name = "GridColumn2"
+ Me.GridColumn2.Visible = True
+ Me.GridColumn2.VisibleIndex = 1
+ Me.GridColumn2.Width = 170
+ '
+ 'Label14
+ '
+ Me.Label14.Dock = System.Windows.Forms.DockStyle.Top
+ Me.Label14.ImeMode = System.Windows.Forms.ImeMode.NoControl
+ Me.Label14.Location = New System.Drawing.Point(0, 0)
+ Me.Label14.Name = "Label14"
+ Me.Label14.Size = New System.Drawing.Size(1208, 30)
+ Me.Label14.TabIndex = 1
+ Me.Label14.Text = "Verfügbare Gruppen"
+ Me.Label14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
+ '
'TBDD_INDEX_MANTableAdapter
'
Me.TBDD_INDEX_MANTableAdapter.ClearBeforeFill = True
@@ -1614,54 +2560,55 @@ Partial Class frmAdmin_Globix
Me.LayoutControlItem38.Size = New System.Drawing.Size(353, 234)
Me.LayoutControlItem38.TextSize = New System.Drawing.Size(163, 13)
'
- 'CONNECTION_IDTextBox1
+ 'TBGI_REGEX_DOCTYPETableAdapter
'
- 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.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(370, 142)
- Me.CONNECTION_IDTextBox1.Name = "CONNECTION_IDTextBox1"
- Me.CONNECTION_IDTextBox1.Size = New System.Drawing.Size(29, 20)
- Me.CONNECTION_IDTextBox1.TabIndex = 23
+ Me.TBGI_REGEX_DOCTYPETableAdapter.ClearBeforeFill = True
'
- 'LayoutControlItem45
+ 'LayoutControlItem47
'
- Me.LayoutControlItem45.Control = Me.CONNECTION_IDTextBox1
- Me.LayoutControlItem45.Location = New System.Drawing.Point(305, 127)
- Me.LayoutControlItem45.Name = "LayoutControlItem45"
- Me.LayoutControlItem45.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
- Me.LayoutControlItem45.Size = New System.Drawing.Size(89, 30)
- Me.LayoutControlItem45.Text = "Conn ID:"
- Me.LayoutControlItem45.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize
- Me.LayoutControlItem45.TextSize = New System.Drawing.Size(45, 13)
- Me.LayoutControlItem45.TextToControlDistance = 5
+ Me.LayoutControlItem47.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem47.AppearanceItemCaption.Options.UseFont = True
+ Me.LayoutControlItem47.Control = Me.FOLDER_FOR_INDEXTextEdit
+ Me.LayoutControlItem47.Location = New System.Drawing.Point(0, 0)
+ Me.LayoutControlItem47.Name = "LayoutControlItem47"
+ Me.LayoutControlItem47.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem47.Size = New System.Drawing.Size(1091, 30)
+ Me.LayoutControlItem47.Text = "Virtual Path"
+ Me.LayoutControlItem47.TextSize = New System.Drawing.Size(83, 17)
'
- 'ListBox1
+ 'EmptySpaceItem12
'
- Me.ListBox1.DataSource = Me.TBDD_INDEX_AUTOMBindingSource
- Me.ListBox1.DisplayMember = "INDEXNAME"
- Me.ListBox1.FormattingEnabled = True
- Me.ListBox1.Location = New System.Drawing.Point(12, 12)
- Me.ListBox1.Name = "ListBox1"
- Me.ListBox1.Size = New System.Drawing.Size(186, 303)
- Me.ListBox1.TabIndex = 24
+ Me.EmptySpaceItem12.AllowHotTrack = False
+ Me.EmptySpaceItem12.Location = New System.Drawing.Point(549, 120)
+ Me.EmptySpaceItem12.Name = "EmptySpaceItem12"
+ Me.EmptySpaceItem12.Size = New System.Drawing.Size(550, 31)
+ Me.EmptySpaceItem12.TextSize = New System.Drawing.Size(0, 0)
'
- 'LayoutControlItem44
+ 'cmbAllAttributes
'
- Me.LayoutControlItem44.Control = Me.ListBox1
- Me.LayoutControlItem44.Location = New System.Drawing.Point(0, 0)
- Me.LayoutControlItem44.Name = "LayoutControlItem44"
- Me.LayoutControlItem44.Size = New System.Drawing.Size(190, 307)
- Me.LayoutControlItem44.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize
- Me.LayoutControlItem44.TextSize = New System.Drawing.Size(0, 0)
- Me.LayoutControlItem44.TextToControlDistance = 0
- Me.LayoutControlItem44.TextVisible = False
+ Me.cmbAllAttributes.FormattingEnabled = True
+ Me.cmbAllAttributes.Location = New System.Drawing.Point(260, 95)
+ Me.cmbAllAttributes.Name = "cmbAllAttributes"
+ Me.cmbAllAttributes.Size = New System.Drawing.Size(836, 21)
+ Me.cmbAllAttributes.TabIndex = 10
+ '
+ 'LayoutControlItem49
+ '
+ Me.LayoutControlItem49.AppearanceItemCaption.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.LayoutControlItem49.AppearanceItemCaption.Options.UseFont = True
+ Me.LayoutControlItem49.Control = Me.cmbAllAttributes
+ Me.LayoutControlItem49.Location = New System.Drawing.Point(159, 80)
+ Me.LayoutControlItem49.Name = "LayoutControlItem49"
+ Me.LayoutControlItem49.Padding = New DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5)
+ Me.LayoutControlItem49.Size = New System.Drawing.Size(932, 31)
+ Me.LayoutControlItem49.Text = "Atribut-Wert"
+ Me.LayoutControlItem49.TextSize = New System.Drawing.Size(83, 15)
'
'frmAdmin_Globix
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(1212, 787)
+ Me.ClientSize = New System.Drawing.Size(1140, 776)
Me.Controls.Add(Me.XtraTabControl1)
Me.Controls.Add(Me.RibbonStatusBar1)
Me.Controls.Add(Me.RibbonControl1)
@@ -1679,6 +2626,7 @@ Partial Class frmAdmin_Globix
Me.XtraTabPageProfile.ResumeLayout(False)
CType(Me.LayoutControlProfile, System.ComponentModel.ISupportInitialize).EndInit()
Me.LayoutControlProfile.ResumeLayout(False)
+ CType(Me.TextEdit1.Properties, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.VWIDB_OBJECT_STOREBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.SEQUENCENumericUpDown, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TBDD_INDEX_MANBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
@@ -1695,33 +2643,34 @@ Partial Class frmAdmin_Globix
CType(Me.LayoutControlItem12, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem10, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem3, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.LayoutControlItem32, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem5, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.LayoutControlItem36, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem30, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem20, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.LayoutControlItem26, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem4, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.EmptySpaceItem1, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem22, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem1, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem25, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.EmptySpaceItem3, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem36, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem32, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem26, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.XtraTabControl2, System.ComponentModel.ISupportInitialize).EndInit()
Me.XtraTabControl2.ResumeLayout(False)
Me.XtraTabPageManIndexe.ResumeLayout(False)
CType(Me.LayoutControlManIndexe, System.ComponentModel.ISupportInitialize).EndInit()
Me.LayoutControlManIndexe.ResumeLayout(False)
+ CType(Me.TextEdit4.Properties, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.VWIDB_BE_ATTRIBUTEBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TextEditAddedWho_ManIndex.Properties, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TextEdit2.Properties, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TextEditChangedWho_ManIndex.Properties, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.TextEdit9.Properties, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.GUIDTextBoxMANINDEX.Properties, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TextEdit10.Properties, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TextEdit11.Properties, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.SpinEdit1.Properties, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.ComboBoxEdit4.Properties, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.LayoutControlGroup1, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlGroupDoctype, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem17, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem19, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem21, System.ComponentModel.ISupportInitialize).EndInit()
@@ -1739,6 +2688,8 @@ Partial Class frmAdmin_Globix
CType(Me.LayoutControlItem7, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem31, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem18, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.EmptySpaceItem6, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem46, System.ComponentModel.ISupportInitialize).EndInit()
Me.XtraTabPageRework.ResumeLayout(False)
CType(Me.LayoutControlRework, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlGroup3, System.ComponentModel.ISupportInitialize).EndInit()
@@ -1747,7 +2698,7 @@ Partial Class frmAdmin_Globix
Me.LayoutControlAutoIndexe.ResumeLayout(False)
CType(Me.TBDD_INDEX_AUTOMBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.SEQUENCENumericUpDown1, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.ComboBoxEdit1.Properties, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.ComboBoxEditAAttrFileParam.Properties, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.ADDED_WHOTextBoxAutoAttribut.Properties, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TextEdit3.Properties, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.CHANGED_WHOTextEditAutoAttribut.Properties, System.ComponentModel.ISupportInitialize).EndInit()
@@ -1768,10 +2719,63 @@ Partial Class frmAdmin_Globix
CType(Me.LayoutControlItem41, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.CHANGED_WHOItemAutoAttribut, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem43, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.RadioGroup1.Properties, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.LayoutControlItem38, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem45, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.LayoutControlItem44, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.EmptySpaceItem5, System.ComponentModel.ISupportInitialize).EndInit()
+ Me.XtraTabPageDynamicFolder.ResumeLayout(False)
+ CType(Me.LayoutControl1, System.ComponentModel.ISupportInitialize).EndInit()
+ Me.LayoutControl1.ResumeLayout(False)
+ CType(Me.txtcrFoldermanuell.Properties, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.FOLDER_FOR_INDEXTextEdit.Properties, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlGroup4, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.EmptySpaceItem7, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem48, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem50, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem51, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.EmptySpaceItem8, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem52, System.ComponentModel.ISupportInitialize).EndInit()
+ Me.XtraTabPageAutoSelect.ResumeLayout(False)
+ CType(Me.LayoutControl2, System.ComponentModel.ISupportInitialize).EndInit()
+ Me.LayoutControl2.ResumeLayout(False)
+ CType(Me.ChangedWhenAutoSelect.Properties, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.TBGI_REGEX_DOCTYPEBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.TextEdit8.Properties, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.AddedWhoAutoSelect.Properties, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.ChangedWhoAutoSelect.Properties, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlGroup5, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem55, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.EmptySpaceItem9, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.EmptySpaceItem10, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem54, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem53, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.EmptySpaceItem11, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem57, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem59, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem58, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem56, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem60, System.ComponentModel.ISupportInitialize).EndInit()
+ Me.XtraTabPage1.ResumeLayout(False)
+ CType(Me.XtraTabControl3, System.ComponentModel.ISupportInitialize).EndInit()
+ Me.XtraTabControl3.ResumeLayout(False)
+ Me.XtraTabPage2.ResumeLayout(False)
+ CType(Me.SplitContainerControl1, System.ComponentModel.ISupportInitialize).EndInit()
+ Me.SplitContainerControl1.ResumeLayout(False)
+ CType(Me.gridAssignedUsers, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.viewAssignedUsers, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.gridAvailableUsers, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.viewAvailableUsers, System.ComponentModel.ISupportInitialize).EndInit()
+ Me.XtraTabPage3.ResumeLayout(False)
+ CType(Me.SplitContainerControlGroup, System.ComponentModel.ISupportInitialize).EndInit()
+ Me.SplitContainerControlGroup.ResumeLayout(False)
+ CType(Me.gridAssignedGroups, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.viewAssignedGroups, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.gridAvailableGroups, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.viewAvailableGroups, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.RadioGroup1.Properties, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem38, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem47, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.EmptySpaceItem12, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.LayoutControlItem49, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
Me.PerformLayout()
@@ -1792,16 +2796,14 @@ Partial Class frmAdmin_Globix
Friend WithEvents TBDD_DOKUMENTARTTableAdapter As GlobixDatasetTableAdapters.TBDD_DOKUMENTARTTableAdapter
Friend WithEvents TableAdapterManager1 As GlobixDatasetTableAdapters.TableAdapterManager
Friend WithEvents BarButtonNew As DevExpress.XtraBars.BarButtonItem
- Friend WithEvents BarButtonItem2 As DevExpress.XtraBars.BarButtonItem
+ Friend WithEvents BarButtonItemDelete As DevExpress.XtraBars.BarButtonItem
Friend WithEvents XtraTabControl1 As DevExpress.XtraTab.XtraTabControl
Friend WithEvents XtraTabPageProfile As DevExpress.XtraTab.XtraTabPage
Friend WithEvents LayoutControlProfile As DevExpress.XtraLayout.LayoutControl
Friend WithEvents AKTIVCheckBox As CheckBox
- Friend WithEvents ERSTELLTWANNTextBox As TextBox
Friend WithEvents GEAENDERTWANNTextBox As TextBox
Friend WithEvents Root As DevExpress.XtraLayout.LayoutControlGroup
Friend WithEvents LayoutControlItem22 As DevExpress.XtraLayout.LayoutControlItem
- Friend WithEvents LayoutControlItem32 As DevExpress.XtraLayout.LayoutControlItem
Friend WithEvents LayoutControlItem36 As DevExpress.XtraLayout.LayoutControlItem
Friend WithEvents XtraTabControl2 As DevExpress.XtraTab.XtraTabControl
Friend WithEvents XtraTabPageManIndexe As DevExpress.XtraTab.XtraTabPage
@@ -1818,7 +2820,7 @@ Partial Class frmAdmin_Globix
Friend WithEvents LayoutControlItem3 As DevExpress.XtraLayout.LayoutControlItem
Friend WithEvents LayoutControlItem5 As DevExpress.XtraLayout.LayoutControlItem
Friend WithEvents LayoutControlManIndexe As DevExpress.XtraLayout.LayoutControl
- Friend WithEvents LayoutControlGroup1 As DevExpress.XtraLayout.LayoutControlGroup
+ Friend WithEvents LayoutControlGroupDoctype As DevExpress.XtraLayout.LayoutControlGroup
Friend WithEvents ListBoxAutoIndexe As ListBox
Friend WithEvents TBDD_INDEX_MANBindingSource As BindingSource
Friend WithEvents TBDD_INDEX_MANTableAdapter As GlobixDatasetTableAdapters.TBDD_INDEX_MANTableAdapter
@@ -1848,7 +2850,7 @@ Partial Class frmAdmin_Globix
Friend WithEvents LayoutControlItem12 As DevExpress.XtraLayout.LayoutControlItem
Friend WithEvents LayoutControlItem10 As DevExpress.XtraLayout.LayoutControlItem
Friend WithEvents LayoutControlItem4 As DevExpress.XtraLayout.LayoutControlItem
- Friend WithEvents TextEdit9 As DevExpress.XtraEditors.TextEdit
+ Friend WithEvents GUIDTextBoxMANINDEX As DevExpress.XtraEditors.TextEdit
Friend WithEvents TextEdit10 As DevExpress.XtraEditors.TextEdit
Friend WithEvents TextEdit11 As DevExpress.XtraEditors.TextEdit
Friend WithEvents LayoutControlItem2 As DevExpress.XtraLayout.LayoutControlItem
@@ -1885,9 +2887,9 @@ Partial Class frmAdmin_Globix
Friend WithEvents INDEXNAMEComboBox As ComboBox
Friend WithEvents ACTIVECheckBox1 As CheckBox
Friend WithEvents SEQUENCENumericUpDown1 As NumericUpDown
- Friend WithEvents GUID_AUTOATTRIBUTETextBox As TextBox
+ Friend WithEvents GUIDTextBoxAutoAttribute As TextBox
Friend WithEvents SimpleButton1 As DevExpress.XtraEditors.SimpleButton
- Friend WithEvents ComboBoxEdit1 As DevExpress.XtraEditors.ComboBoxEdit
+ Friend WithEvents ComboBoxEditAAttrFileParam As DevExpress.XtraEditors.ComboBoxEdit
Friend WithEvents LayoutControlItem15 As DevExpress.XtraLayout.LayoutControlItem
Friend WithEvents LayoutControlItem23 As DevExpress.XtraLayout.LayoutControlItem
Friend WithEvents LayoutControlItem33 As DevExpress.XtraLayout.LayoutControlItem
@@ -1916,4 +2918,81 @@ Partial Class frmAdmin_Globix
Friend WithEvents LayoutControlItem45 As DevExpress.XtraLayout.LayoutControlItem
Friend WithEvents ListBox1 As ListBox
Friend WithEvents LayoutControlItem44 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents XtraTabPage1 As DevExpress.XtraTab.XtraTabPage
+ Friend WithEvents XtraTabControl3 As DevExpress.XtraTab.XtraTabControl
+ Friend WithEvents XtraTabPage2 As DevExpress.XtraTab.XtraTabPage
+ Friend WithEvents SplitContainerControl1 As DevExpress.XtraEditors.SplitContainerControl
+ Friend WithEvents gridAssignedUsers As DevExpress.XtraGrid.GridControl
+ Friend WithEvents viewAssignedUsers As DevExpress.XtraGrid.Views.Grid.GridView
+ Friend WithEvents GridColumn1 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents GridColumn3 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents GridColumn5 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents GridColumn4 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents Label2 As Label
+ Friend WithEvents gridAvailableUsers As DevExpress.XtraGrid.GridControl
+ Friend WithEvents viewAvailableUsers As DevExpress.XtraGrid.Views.Grid.GridView
+ Friend WithEvents GridColumn6 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents GridColumn7 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents GridColumn9 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents GridColumn8 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents Label35 As Label
+ Friend WithEvents XtraTabPage3 As DevExpress.XtraTab.XtraTabPage
+ Friend WithEvents SplitContainerControlGroup As DevExpress.XtraEditors.SplitContainerControl
+ Friend WithEvents gridAssignedGroups As DevExpress.XtraGrid.GridControl
+ Friend WithEvents viewAssignedGroups As DevExpress.XtraGrid.Views.Grid.GridView
+ Friend WithEvents colNAME As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents colGUID As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents Label13 As Label
+ Friend WithEvents gridAvailableGroups As DevExpress.XtraGrid.GridControl
+ Friend WithEvents viewAvailableGroups As DevExpress.XtraGrid.Views.Grid.GridView
+ Friend WithEvents colGUID2 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents GridColumn2 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents Label14 As Label
+ Friend WithEvents TextEdit1 As DevExpress.XtraEditors.TextEdit
+ Friend WithEvents LayoutControlItem32 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents TextEdit4 As DevExpress.XtraEditors.TextEdit
+ Friend WithEvents EmptySpaceItem6 As DevExpress.XtraLayout.EmptySpaceItem
+ Friend WithEvents LayoutControlItem46 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents EmptySpaceItem5 As DevExpress.XtraLayout.EmptySpaceItem
+ Friend WithEvents LayoutControl1 As DevExpress.XtraLayout.LayoutControl
+ Friend WithEvents SimpleButton3 As DevExpress.XtraEditors.SimpleButton
+ Friend WithEvents txtcrFoldermanuell As DevExpress.XtraEditors.TextEdit
+ Friend WithEvents cmbCrFolderDate As ComboBox
+ Friend WithEvents Label1 As Label
+ Friend WithEvents FOLDER_FOR_INDEXTextEdit As DevExpress.XtraEditors.TextEdit
+ Friend WithEvents LayoutControlGroup4 As DevExpress.XtraLayout.LayoutControlGroup
+ Friend WithEvents EmptySpaceItem7 As DevExpress.XtraLayout.EmptySpaceItem
+ Friend WithEvents LayoutControlItem48 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents LayoutControlItem50 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents LayoutControlItem51 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents EmptySpaceItem8 As DevExpress.XtraLayout.EmptySpaceItem
+ Friend WithEvents LayoutControlItem52 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents LayoutControl2 As DevExpress.XtraLayout.LayoutControl
+ Friend WithEvents LayoutControlGroup5 As DevExpress.XtraLayout.LayoutControlGroup
+ Friend WithEvents ListBox2 As ListBox
+ Friend WithEvents TBGI_REGEX_DOCTYPEBindingSource As BindingSource
+ Friend WithEvents TBGI_REGEX_DOCTYPETableAdapter As GlobixDatasetTableAdapters.TBGI_REGEX_DOCTYPETableAdapter
+ Friend WithEvents REGEXTextBox As TextBox
+ Friend WithEvents GUIDTextBoxAutoSelect As TextBox
+ Friend WithEvents LayoutControlItem54 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents LayoutControlItem55 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents EmptySpaceItem9 As DevExpress.XtraLayout.EmptySpaceItem
+ Friend WithEvents SimpleButton4 As DevExpress.XtraEditors.SimpleButton
+ Friend WithEvents LayoutControlItem53 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents txtDateinameTest As TextBox
+ Friend WithEvents LayoutControlItem60 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents EmptySpaceItem10 As DevExpress.XtraLayout.EmptySpaceItem
+ Friend WithEvents EmptySpaceItem11 As DevExpress.XtraLayout.EmptySpaceItem
+ Friend WithEvents ChangedWhenAutoSelect As DevExpress.XtraEditors.TextEdit
+ Friend WithEvents TextEdit8 As DevExpress.XtraEditors.TextEdit
+ Friend WithEvents AddedWhoAutoSelect As DevExpress.XtraEditors.TextEdit
+ Friend WithEvents ChangedWhoAutoSelect As DevExpress.XtraEditors.TextEdit
+ Friend WithEvents LayoutControlItem57 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents LayoutControlItem59 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents LayoutControlItem58 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents LayoutControlItem56 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents LayoutControlItem47 As DevExpress.XtraLayout.LayoutControlItem
+ Friend WithEvents EmptySpaceItem12 As DevExpress.XtraLayout.EmptySpaceItem
+ Friend WithEvents cmbAllAttributes As ComboBox
+ Friend WithEvents LayoutControlItem49 As DevExpress.XtraLayout.LayoutControlItem
End Class
diff --git a/GUIs.ZooFlow/Administration/frmAdmin_Globix.resx b/GUIs.ZooFlow/Administration/frmAdmin_Globix.resx
index 081213f0..6e7b1308 100644
--- a/GUIs.ZooFlow/Administration/frmAdmin_Globix.resx
+++ b/GUIs.ZooFlow/Administration/frmAdmin_Globix.resx
@@ -140,7 +140,7 @@
DQogIDwvZz4NCjwvc3ZnPgs=
-
+
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjE5LjIsIFZlcnNpb249MTkuMi4z
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
@@ -209,12 +209,6 @@
NHY0aDRMMTQsMjR6IiBjbGFzcz0iQmx1ZSIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
-
- 1161, 17
-
-
- 752, 56
-
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjE5LjIsIFZlcnNpb249MTkuMi4z
@@ -279,32 +273,6 @@
MC41LTAuMSwwLjctMC4yYzAuMi0wLjEsMC40LTAuMiwwLjYtMC41YzAuMi0wLjIsMC41LTAuNywxLTEu
NEwyMSwyNC4zaC0xLjFsMC4zLTEuNCAgYzAuNi0wLjEsMS4yLTAuMywxLjctMC42SDIyLjV6IiBjbGFz
cz0iQmx1ZSIgLz4NCjwvc3ZnPgs=
-
-
-
- 17, 95
-
-
- 17, 95
-
-
- 17, 95
-
-
-
- AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjE5LjIsIFZlcnNpb249MTkuMi4z
- LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
- dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAEACAAAC77u/
- PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
- IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
- MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
- Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
- MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
- ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
- OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
- dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IkFycm93MUxlZnQiPg0KICAgIDxwb2x5Z29uIHBvaW50
- cz0iMjgsMTQgMTQsMTQgMTQsMTMuMyAxNCw2IDQsMTYgMTQsMjYgMTQsMTguNyAxNCwxOCAyOCwxOCAg
- IiBjbGFzcz0iQmx1ZSIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
@@ -328,6 +296,26 @@
MTBoLTR2NGg0VjEweiBNMTQsMTZoLTR2MTJoNFYxNnoiIGNsYXNzPSJCbHVlIiAvPg0KICA8L2c+DQog
IDxwYXRoIGQ9Ik0yNSwxNmwtNCw0aDNjMCwyLjItMS44LDQtNCw0di0zbC00LDRsNCw0di0zYzMuMyww
LDYtMi43LDYtNmgzTDI1LDE2eiIgY2xhc3M9IkJsdWUiIC8+DQo8L3N2Zz4L
+
+
+
+
+ AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjE5LjIsIFZlcnNpb249MTkuMi4z
+ LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
+ dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAOsCAAAC77u/
+ PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
+ IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
+ MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
+ Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
+ MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9Cgku
+ WWVsbG93e2ZpbGw6I0ZGQjExNTt9CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQoJLlJlZHtmaWxsOiNEMTFD
+ MUM7fQoJLldoaXRle2ZpbGw6I0ZGRkZGRjt9CgkuR3JlZW57ZmlsbDojMDM5QzIzO30KCS5zdDB7Zmls
+ bDojNzI3MjcyO30KCS5zdDF7b3BhY2l0eTowLjU7fQoJLnN0MntvcGFjaXR5OjAuNzU7fQo8L3N0eWxl
+ Pg0KICA8ZyBpZD0iQWRkRmlsZSI+DQogICAgPHBhdGggZD0iTTE2LDI2SDZWNGgxOHYxNGgyVjNjMC0w
+ LjUtMC41LTEtMS0xSDVDNC41LDIsNCwyLjUsNCwzdjI0YzAsMC41LDAuNSwxLDEsMWgxMVYyNnoiIGNs
+ YXNzPSJCbGFjayIgLz4NCiAgICA8cG9seWdvbiBwb2ludHM9IjMwLDI0IDI2LDI0IDI2LDIwIDIyLDIw
+ IDIyLDI0IDE4LDI0IDE4LDI4IDIyLDI4IDIyLDMyIDI2LDMyIDI2LDI4IDMwLDI4ICAiIGNsYXNzPSJH
+ cmVlbiIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
@@ -372,11 +360,159 @@
ICAgYzAuOS0zLDMuNy01LDctNXM2LjEsMiw3LDVDMjkuMSwyNiwyNi4zLDI4LDIzLDI4eiBNMjMsMjZj
LTEuNywwLTMtMS4zLTMtM3MxLjMtMywzLTNzMywxLjMsMywzUzI0LjcsMjYsMjMsMjZ6IiBjbGFzcz0i
QmxhY2siIC8+DQogIDwvZz4NCjwvc3ZnPgs=
+
+
+
+
+ AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjE5LjIsIFZlcnNpb249MTkuMi4z
+ LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
+ dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAJYEAAAC77u/
+ PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
+ IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
+ MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
+ Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
+ MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLlllbGxvd3tmaWxsOiNGRkIxMTU7fQoJ
+ LlJlZHtmaWxsOiNEMTFDMUM7fQoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9CgkuQmx1ZXtmaWxsOiMxMTc3
+ RDc7fQoJLldoaXRle2ZpbGw6I0ZGRkZGRjt9CgkuR3JlZW57ZmlsbDojMDM5QzIzO30KCS5zdDB7b3Bh
+ Y2l0eTowLjc1O30KCS5zdDF7b3BhY2l0eTowLjU7fQoJLnN0MntvcGFjaXR5OjAuMjU7fQoJLnN0M3tm
+ aWxsOiNGRkIxMTU7fQo8L3N0eWxlPg0KICA8ZyBpZD0iUGFyYW1ldGVycyI+DQogICAgPHBhdGggZD0i
+ TTE0LDI2SDZWNGgxOHYxMmMwLjcsMC4yLDEuNCwwLjUsMiwwLjhWM2MwLTAuNi0wLjQtMS0xLTFINUM0
+ LjQsMiw0LDIuNCw0LDN2MjRjMCwwLjYsMC40LDEsMSwxaDkuOCAgIEMxNC41LDI3LjQsMTQuMiwyNi43
+ LDE0LDI2eiIgY2xhc3M9IkJsYWNrIiAvPg0KICAgIDxwYXRoIGQ9Ik0zMCwyNXYtMmwtMi4yLTAuNGMt
+ MC4yLTAuNi0wLjQtMS4zLTAuOC0xLjhsMS4zLTEuOGwtMS40LTEuNGwtMS44LDEuM2MtMC41LTAuMy0x
+ LjItMC42LTEuOC0wLjdMMjMsMTZoLTIgICBsLTAuNCwyLjJjLTAuNiwwLjItMS4zLDAuNC0xLjgsMC43
+ TDE3LDE3LjZMMTUuNiwxOWwxLjMsMS44Yy0wLjMsMC41LTAuNiwxLjItMC44LDEuOEwxNCwyM3YybDIu
+ MiwwLjRjMC4yLDAuNiwwLjQsMS4zLDAuOCwxLjggICBMMTUuNywyOWwxLjQsMS40bDEuOC0xLjNjMC41
+ LDAuMywxLjIsMC42LDEuOCwwLjdMMjEsMzJoMmwwLjQtMi4yYzAuNi0wLjIsMS4zLTAuNCwxLjgtMC43
+ bDEuOCwxLjNsMS40LTEuNGwtMS4zLTEuOCAgIGMwLjMtMC41LDAuNi0xLjIsMC44LTEuOEwzMCwyNXog
+ TTIyLDI2Yy0xLjEsMC0yLTAuOS0yLTJzMC45LTIsMi0yczIsMC45LDIsMlMyMy4xLDI2LDIyLDI2eiIg
+ Y2xhc3M9IkJsdWUiIC8+DQogIDwvZz4NCjwvc3ZnPgs=
+
+
+
+
+ AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjE5LjIsIFZlcnNpb249MTkuMi4z
+ LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
+ dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAHcDAAAC77u/
+ PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
+ IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
+ MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
+ Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
+ MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9Cgku
+ Qmx1ZXtmaWxsOiMxMTc3RDc7fQoJLnN0MHtvcGFjaXR5OjAuNTt9Cjwvc3R5bGU+DQogIDxnIGlkPSJN
+ YW5hZ2VfUmVsYXRpb25zIj4NCiAgICA8ZyBjbGFzcz0ic3QwIj4NCiAgICAgIDxwYXRoIGQ9Ik0zMSwz
+ MmgtOGMtMC41LDAtMS0wLjUtMS0xdi04YzAtMC41LDAuNS0xLDEtMWg4YzAuNSwwLDEsMC41LDEsMXY4
+ QzMyLDMxLjUsMzEuNSwzMiwzMSwzMnogTTMyLDlWMSAgICBjMC0wLjYtMC41LTEtMS0xaC04Yy0wLjUs
+ MC0xLDAuNC0xLDF2OGMwLDAuNiwwLjUsMSwxLDFoOEMzMS41LDEwLDMyLDkuNiwzMiw5eiIgY2xhc3M9
+ IkJsYWNrIiAvPg0KICAgIDwvZz4NCiAgICA8cGF0aCBkPSJNMTEsMjJIMWMtMC42LDAtMS0wLjUtMS0x
+ VjExYzAtMC42LDAuNC0xLDEtMWgxMGMwLjYsMCwxLDAuNCwxLDF2MTBDMTIsMjEuNSwxMS42LDIyLDEx
+ LDIyeiIgY2xhc3M9IkJsdWUiIC8+DQogICAgPHBhdGggZD0iTTIwLDJ2NmwtMi4zLTIuM2wtNCw0bC0x
+ LjQtMS40bDQtNEwxNCwySDIweiBNMTcuNywyNi4zbC00LTRsLTEuNCwxLjRsNCw0TDE0LDMwaDZ2LTZM
+ MTcuNywyNi4zeiIgY2xhc3M9IkJsYWNrIiAvPg0KICA8L2c+DQo8L3N2Zz4L
246, 56
+
+ 1161, 17
+
+
+ 752, 56
+
+
+ 752, 56
+
+
+ 17, 95
+
+
+
+ AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjE5LjIsIFZlcnNpb249MTkuMi4z
+ LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
+ dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAEACAAAC77u/
+ PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
+ IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
+ MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
+ Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
+ MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
+ ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
+ OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
+ dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IkFycm93MUxlZnQiPg0KICAgIDxwb2x5Z29uIHBvaW50
+ cz0iMjgsMTQgMTQsMTQgMTQsMTMuMyAxNCw2IDQsMTYgMTQsMjYgMTQsMTguNyAxNCwxOCAyOCwxOCAg
+ IiBjbGFzcz0iQmx1ZSIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
+
+
+
+ 17, 95
+
+
+ 511, 95
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAABl0RVh0U29m
+ dHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAjdEVYdFRpdGxlAEZvcmNlIFRlc3Q7VGVzdDtDaGVj
+ aztSZXBvcnQ74hwgxgAAAR1JREFUWEfdkrENwjAQRcNmINEzBBtQUFNkB0ago0FswBDMQMEKx32Tiw7r
+ K0CwD0HxlPjb9/+PlUZEvgoVI6FiJFR8Rtu2G0UyoNHzQ1DxGRaar6sVUOO9C3kVzFA/DxXB5biQ62ml
+ rw9f+C4NPOBlvjlUBFmB0TdQqsBoPi7QAaMxpPniBdj59W47VQRPdzamgAtPuLNlC6i50X+tezdm5mHz
+ xQpA1wDgAz0oY+cmNl/0BrDXBdFwYB42X+MG8hJ9ODAPmy9awMNCvW7zxQucl/ODoq/9WjotrSMKIJCR
+ 9iMKsBJJx361AmaM/SxcpXsxPKsXyMMdabZaAUODBn9Cd7ZOgTf4nwIf8bsFSpL7G1SMhIqRUDESKsYh
+ zQ3o4jAe74EDiAAAAABJRU5ErkJggg==
+
+
+
+
+ AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjE5LjIsIFZlcnNpb249MTkuMi4z
+ LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
+ dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAKEDAAAC77u/
+ PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
+ IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
+ MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
+ Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
+ MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
+ ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
+ OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
+ dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IlVzZXIiPg0KICAgIDxwYXRoIGQ9Ik0xMCw5LjljLTAu
+ MSwwLjUsMC4yLDAuOSwwLjQsMS40YzAuMiwwLjUtMC4xLDEuNywwLjksMS42YzAsMCwwLDAuMSwwLDAu
+ MmMwLjYsMi4zLDIsNC45LDQuNyw0LjkgICBjMi43LDAsNC4yLTIuNiw0LjctNC45YzAsMCwwLTAuMSww
+ LTAuMWMxLDAuMSwwLjYtMS4xLDAuOS0xLjZjMC4yLTAuNSwwLjQtMC45LDAuMy0xLjRjLTAuMS0wLjQt
+ MC40LTAuNC0wLjUtMC4zICAgYzEuOC00LjktMS4xLTQuNy0xLjEtNC43UzIwLDIsMTQuOCwyQzEwLDIs
+ OS40LDYsMTAuNSw5LjZDMTAuNCw5LjYsMTAuMSw5LjcsMTAsOS45eiIgY2xhc3M9IkJsYWNrIiAvPg0K
+ ICAgIDxwYXRoIGQ9Ik0yMCwxOGMtMC44LDEuNS0yLjEsNC00LDRjLTEuOSwwLTMuMi0yLjUtNC00Yy0y
+ LjMsMy41LTgsMS04LDguNVYzMGgyNHYtMy41QzI4LDE5LjEsMjIuMywyMS40LDIwLDE4eiIgY2xhc3M9
+ IkJsYWNrIiAvPg0KICA8L2c+DQo8L3N2Zz4L
+
+
+
+
+ AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjE5LjIsIFZlcnNpb249MTkuMi4z
+ LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
+ dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAALkEAAAC77u/
+ PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
+ IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
+ MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
+ Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
+ MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLlJlZHtmaWxsOiNEMTFDMUM7fQoJLkJs
+ YWNre2ZpbGw6IzcyNzI3Mjt9CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQoJLkdyZWVue2ZpbGw6IzAzOUMy
+ Mzt9CgkuWWVsbG93e2ZpbGw6I0ZGQjExNTt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
+ Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQo8L3N0eWxlPg0KICA8ZyBpZD0iR3JvdXBCeVJl
+ c291cmNlXzFfIj4NCiAgICA8cGF0aCBkPSJNNi41LDcuNkM1LjQsNCw2LDAsMTAuOCwwYzUuMiwwLDUu
+ NSwyLjksNS41LDIuOXMyLjktMC4yLDEuMSw0LjdjMC4xLDAsMC41LTAuMSwwLjUsMC4zICAgYzAuMSww
+ LjUsMCwwLjktMC4zLDEuNGMtMC4xLDAuMi0wLjEsMC40LTAuMSwwLjdIMTNjLTAuNSwwLTEsMC41LTEs
+ MXY1Yy0yLjYsMC00LjEtMi42LTQuNy00LjljMC0wLjEsMC0wLjEsMC0wLjIgICBjLTEsMC4xLTAuNi0x
+ LjEtMC45LTEuNkM2LjIsOC44LDUuOSw4LjQsNiw3LjlDNi4xLDcuNyw2LjQsNy42LDYuNSw3LjZ6IE0x
+ MiwyMGMtMS45LDAtMy4yLTIuNS00LTRjLTIuMywzLjUtOCwxLTgsOC41VjI2aDEyVjIweiIgY2xhc3M9
+ IkJsdWUiIC8+DQogICAgPHBhdGggZD0iTTE0LDEzdjE4YzAsMC42LDAuNCwxLDEsMWgxNmMwLjYsMCwx
+ LTAuNCwxLTFWMTNjMC0wLjYtMC40LTEtMS0xSDE1QzE0LjQsMTIsMTQsMTIuNCwxNCwxM3ogTTMwLDMw
+ SDE2VjE2ICAgaDE0VjMweiIgY2xhc3M9IkJsYWNrIiAvPg0KICAgIDxnIGNsYXNzPSJzdDAiPg0KICAg
+ ICAgPHBhdGggZD0iTTI4LDE4aC00djRoNFYxOHogTTIyLDI0aC00djRoNFYyNHogTTI4LDI0aC00djRo
+ NFYyNHoiIGNsYXNzPSJCbGFjayIgLz4NCiAgICA8L2c+DQogICAgPHJlY3QgeD0iMTgiIHk9IjE4IiB3
+ aWR0aD0iNCIgaGVpZ2h0PSI0IiByeD0iMCIgcnk9IjAiIGNsYXNzPSJHcmVlbiIgLz4NCiAgPC9nPg0K
+ PC9zdmc+Cw==
+
+
17, 56
@@ -389,4 +525,7 @@
267, 95
+
+ 765, 95
+
\ No newline at end of file
diff --git a/GUIs.ZooFlow/Administration/frmAdmin_Globix.vb b/GUIs.ZooFlow/Administration/frmAdmin_Globix.vb
index 5f126db7..725331a7 100644
--- a/GUIs.ZooFlow/Administration/frmAdmin_Globix.vb
+++ b/GUIs.ZooFlow/Administration/frmAdmin_Globix.vb
@@ -1,4 +1,5 @@
-Imports DevExpress.XtraLayout
+Imports System.Text.RegularExpressions
+Imports DevExpress.XtraLayout
Imports DigitalData.Modules.Logging
Public Class frmAdmin_Globix
@@ -19,13 +20,14 @@ Public Class frmAdmin_Globix
End Sub
Private Sub frmAdmin_Globix_Load(sender As Object, e As EventArgs) Handles MyBase.Load
- 'TODO: Diese Codezeile lädt Daten in die Tabelle "DSIDB_Stammdaten.VWIDB_OBJECT_STORE". Sie können sie bei Bedarf verschieben oder entfernen.
+ 'TODO: Diese Codezeile lädt Daten in die Tabelle "GlobixDataset.TBGI_REGEX_DOCTYPE". Sie können sie bei Bedarf verschieben oder entfernen.
InitializeBaseForm(My.LogConfig)
Try
TBDD_DOKUMENTARTTableAdapter.Connection.ConnectionString = My.DatabaseECM.CurrentSQLConnectionString
TBDD_DOKUMENTARTTableAdapter.Fill(Me.GlobixDataset.TBDD_DOKUMENTART, PrimaryKey)
TBDD_INDEX_MANTableAdapter.Connection.ConnectionString = My.DatabaseECM.CurrentSQLConnectionString
+ Me.TBGI_REGEX_DOCTYPETableAdapter.Connection.ConnectionString = My.DatabaseECM.CurrentSQLConnectionString
Me.VWIDB_OBJECT_STORETableAdapter.Connection.ConnectionString = My.DatabaseIDB.CurrentSQLConnectionString
Me.VWIDB_OBJECT_STORETableAdapter.Fill(Me.DSIDB_Stammdaten.VWIDB_OBJECT_STORE)
Me.VWIDB_BE_ATTRIBUTETableAdapter.Connection.ConnectionString = My.DatabaseIDB.CurrentSQLConnectionString
@@ -59,6 +61,22 @@ Public Class frmAdmin_Globix
.DataTable = GlobixDataset.TBDD_INDEX_AUTOM,
.AddedWhoEdit = ADDED_WHOTextBoxAutoAttribut,
.ChangedWhoEdit = CHANGED_WHOTextEditAutoAttribut
+ },
+ New ClassDetailPages.DetailPage With {
+ .Name = "Auto Attributes",
+ .TabPage = XtraTabPageAutoSelect,
+ .BindingSource = TBGI_REGEX_DOCTYPEBindingSource,
+ .DataTable = GlobixDataset.TBGI_REGEX_DOCTYPE,
+ .AddedWhoEdit = AddedWhoAutoSelect,
+ .ChangedWhoEdit = ChangedWhoAutoSelect
+ },
+ New ClassDetailPages.DetailPage With {
+ .Name = "Dynamic Folder",
+ .TabPage = XtraTabPageDynamicFolder,
+ .BindingSource = TBDD_DOKUMENTARTBindingSource,
+ .DataTable = GlobixDataset.TBDD_DOKUMENTART,
+ .AddedWhoEdit = TextEditErstelltWer,
+ .ChangedWhoEdit = TextEditGeandertWer
}
})
@@ -69,6 +87,11 @@ Public Class frmAdmin_Globix
Else
TextEditChangedWho_ManIndex.EditValue = My.Application.User.UserName
End If
+ Dim oDragDropManager As New ClassDragDrop(My.LogConfig)
+ oDragDropManager.AddGridView(viewAssignedGroups)
+ oDragDropManager.AddGridView(viewAvailableGroups)
+ oDragDropManager.AddGridView(viewAssignedUsers)
+ oDragDropManager.AddGridView(viewAvailableUsers)
Catch ex As Exception
ShowErrorMessage(ex)
End Try
@@ -95,9 +118,6 @@ Public Class frmAdmin_Globix
RibbonPageGroup1.Text = e.Page.Name
End If
End Sub
-
-
-
Private Sub ResetMessages()
labelStatus.Visibility = DevExpress.XtraBars.BarItemVisibility.Never
End Sub
@@ -146,7 +166,10 @@ Public Class frmAdmin_Globix
Case XtraTabPageAutoIndexe.Name
Save_AutoIndexe(oPage)
Load_Attribute_Auto()
-
+ Case XtraTabPageAutoSelect.Name
+ Save_AutoSelect(oPage)
+ Case XtraTabPageDynamicFolder.Name
+ Update_Doctype()
End Select
oPage.IsInsert = False
@@ -193,7 +216,23 @@ Public Class frmAdmin_Globix
Return False
End Try
End Function
-
+ Private Function Save_AutoSelect(oPage As ClassDetailPages.DetailPage) As Boolean
+ Try
+ TBGI_REGEX_DOCTYPEBindingSource.EndEdit()
+ If GlobixDataset.TBGI_REGEX_DOCTYPE.GetChanges() IsNot Nothing Then
+ If Pages.Current.IsInsert Then
+ AddedWhoAutoSelect.Text = My.Application.User.UserName
+ Else
+ ChangedWhoAutoSelect.Text = My.Application.User.UserName
+ End If
+ TBGI_REGEX_DOCTYPEBindingSource.EndEdit()
+ TBGI_REGEX_DOCTYPETableAdapter.Update(Pages.Current.DataTable)
+ End If
+ Return True
+ Catch ex As Exception
+ Return False
+ End Try
+ End Function
Private Function Insert_Doctype() As Boolean
Try
Dim oIns = $"INSERT INTO [TBDD_DOKUMENTART] ([BEZEICHNUNG] ,[OBJEKTTYP] ,[EINGANGSART_ID] ,[KURZNAME] ,[ZIEL_PFAD] ,[BESCHREIBUNG]
@@ -223,7 +262,7 @@ Public Class frmAdmin_Globix
Try
Dim oUpd = $"UPDATE TBDD_DOKUMENTART SET [BEZEICHNUNG] = '{TextEditBezeichnung.Text}' ,[KURZNAME] = '{TextEditKurzname.Text}' ,[BESCHREIBUNG] = '{TextEditBeschreibung.Text}'
,[DUPLICATE_HANDLING] = '{ComboBoxEditDupl_handling.EditValue}',[AKTIV] = '{AKTIVCheckBox.Checked}',[SEQUENCE] = {SEQUENCENumericUpDown.Value}
- ,[NAMENKONVENTION] = '{TextEditNamenkonvention.Text}',[GEANDERTWER] = '{My.Application.User.UserName}',IDB_OBJECT_STORE_ID = {IDB_OBJECT_STORE_IDComboBox.SelectedValue} WHERE GUID = {TextEditDoctypeID.Text}"
+ ,[NAMENKONVENTION] = '{TextEditNamenkonvention.Text}', [FOLDER_FOR_INDEX] = '{FOLDER_FOR_INDEXTextEdit.Text}',[GEANDERTWER] = '{My.Application.User.UserName}',IDB_OBJECT_STORE_ID = {IDB_OBJECT_STORE_IDComboBox.SelectedValue} WHERE GUID = {TextEditDoctypeID.Text}"
Return My.DatabaseECM.ExecuteNonQuery(oUpd)
@@ -249,6 +288,8 @@ Public Class frmAdmin_Globix
Select Case oPage.TabPage.Name
Case XtraTabPageAutoIndexe.Name
oPage.DataTable.Columns.Item("DOCTYPE_ID").DefaultValue = PrimaryKey
+ Case XtraTabPageAutoSelect.Name
+ oPage.DataTable.Columns.Item("DOCTYPE_ID").DefaultValue = PrimaryKey
Case Else
oPage.DataTable.Columns.Item("DOK_ID").DefaultValue = PrimaryKey
End Select
@@ -262,6 +303,8 @@ Public Class frmAdmin_Globix
TextEditAddedWho_ManIndex.Text = My.Application.User.UserName
Case XtraTabPageAutoIndexe.Name
ADDED_WHOTextBoxAutoAttribut.Text = My.Application.User.UserName
+ Case XtraTabPageAutoSelect.Name
+
End Select
Dim oNewRecord As DataRowView = oPage.BindingSource.AddNew()
@@ -302,19 +345,41 @@ Public Class frmAdmin_Globix
End Try
End Sub
+ Private Sub Load_AutoSelect()
+ Try
+ Me.TBGI_REGEX_DOCTYPETableAdapter.Fill(Me.GlobixDataset.TBGI_REGEX_DOCTYPE, TextEditDoctypeID.Text)
+ Catch ex As System.Exception
+ System.Windows.Forms.MessageBox.Show(ex.Message)
+ End Try
+ End Sub
Private Sub XtraTabControl2_SelectedPageChanged(sender As Object, e As DevExpress.XtraTab.TabPageChangedEventArgs) Handles XtraTabControl2.SelectedPageChanged
Dim oPage = Pages.GetDetailPage(e.Page)
If oPage IsNot Nothing Then
Pages.Current = oPage
+ Select Case oPage.TabPage.Name
+ Case XtraTabPageAutoIndexe.Name
+ Load_Attribute_Auto()
+ Case XtraTabPageManIndexe.Name
+ Load_INDEXMAN()
+ Case XtraTabPageAutoSelect.Name
+ Load_AutoSelect()
+ Case XtraTabPageDynamicFolder.Name
+ cmbAllAttributes.Items.Clear()
+ For Each oRowMan As DataRow In Me.GlobixDataset.TBDD_INDEX_MAN.Rows
+ cmbAllAttributes.Items.Add(oRowMan.Item("WD_INDEX") & "#M")
+ Next
+ For Each oRowMan As DataRow In Me.GlobixDataset.TBDD_INDEX_AUTOM.Rows
+ cmbAllAttributes.Items.Add(oRowMan.Item("INDEXNAME") & "#A")
+ Next
+ End Select
+ 'Else
+ ' If XtraTabControl2.SelectedTabPageIndex = 3 Then
+ ' sd
+ ' End If
End If
- Select Case oPage.TabPage.Name
- Case XtraTabPageAutoIndexe.Name
- Load_Attribute_Auto()
- Case XtraTabPageManIndexe.Name
- Load_INDEXMAN()
- End Select
+
End Sub
@@ -324,7 +389,7 @@ Public Class frmAdmin_Globix
Dim oForm As New frmSQLDesigner() With {
.SQLCommand = oSQLbefore, .DesignType = "GI_ATTRIBUTE_AUTO",
.ConnectionID = CONNECTION_IDTextBox1.Text,
- .AutoAttributID = GUID_AUTOATTRIBUTETextBox.Text
+ .AutoAttributID = GUIDTextBoxAutoAttribute.Text
}
Dim oResult = oForm.ShowDialog()
If oSQLbefore <> oForm.SQLCommand Then
@@ -337,4 +402,208 @@ Public Class frmAdmin_Globix
End If
End Sub
+
+ Private Sub XtraTabControl1_SelectedPageChanged(sender As Object, e As DevExpress.XtraTab.TabPageChangedEventArgs) Handles XtraTabControl1.SelectedPageChanged
+ Select Case XtraTabControl1.SelectedTabPageIndex
+ Case 1
+ gridAssignedGroups.DataSource = ClassGIDatatables.GetAssignedGroups(TextEditDoctypeID.Text)
+ gridAvailableGroups.DataSource = ClassGIDatatables.GetAvailableGroups(TextEditDoctypeID.Text)
+ gridAssignedUsers.DataSource = ClassGIDatatables.GetAssignedUsers(TextEditDoctypeID.Text)
+ gridAvailableUsers.DataSource = ClassGIDatatables.GetAvailableUsers(TextEditDoctypeID.Text)
+ End Select
+ End Sub
+
+ Private Sub gridAssignedUsers_DragDrop(sender As Object, e As DragEventArgs) Handles gridAssignedUsers.DragDrop
+ Try
+ Dim data As String = e.Data.GetData(DataFormats.Text)
+ Dim userId As Integer = data.Split("|")(0)
+ Dim profileId As Integer = TextEditDoctypeID.Text
+
+ ClassGIDatatables.AddUserToProfile(userId, profileId)
+ gridAssignedUsers.DataSource = ClassGIDatatables.GetAssignedUsers(profileId)
+ gridAvailableUsers.DataSource = ClassGIDatatables.GetAvailableUsers(profileId)
+ Catch ex As Exception
+ Logger.Error(ex)
+ MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler beim Hinzufügen eines Users:")
+ End Try
+ End Sub
+
+ Private Sub gridAvailableUsers_DragDrop(sender As Object, e As DragEventArgs) Handles gridAvailableUsers.DragDrop
+ Try
+ Dim data As String = e.Data.GetData(DataFormats.Text)
+ Dim userId As Integer = data.Split("|")(0)
+ Dim profileId As Integer = TextEditDoctypeID.Text
+
+ ClassGIDatatables.RemoveUserFromProfile(userId, profileId)
+ gridAssignedUsers.DataSource = ClassGIDatatables.GetAssignedUsers(profileId)
+ gridAvailableUsers.DataSource = ClassGIDatatables.GetAvailableUsers(profileId)
+ Catch ex As Exception
+ Logger.Error(ex)
+ MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler beim Hinzufügen eines Users:")
+ End Try
+ End Sub
+
+ Private Sub gridAssignedGroups_DragDrop(sender As Object, e As DragEventArgs) Handles gridAssignedGroups.DragDrop
+ Try
+ Dim data As String = e.Data.GetData(DataFormats.Text)
+ Dim groupId As Integer = data.Split("|")(0)
+ Dim profileId As Integer = TextEditDoctypeID.Text
+
+ ClassGIDatatables.AddGroupToProfile(groupId, profileId)
+ gridAssignedGroups.DataSource = ClassGIDatatables.GetAssignedGroups(profileId)
+ gridAvailableGroups.DataSource = ClassGIDatatables.GetAvailableGroups(profileId)
+ Catch ex As Exception
+ Logger.Error(ex)
+ MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler beim Hinzufügen einer Gruppe:")
+ End Try
+ End Sub
+
+ Private Sub gridAvailableGroups_DragDrop(sender As Object, e As DragEventArgs) Handles gridAvailableGroups.DragDrop
+ Try
+ Dim data As String = e.Data.GetData(DataFormats.Text)
+ Dim groupId As Integer = data.Split("|")(0)
+ Dim profileId As Integer = TextEditDoctypeID.Text
+
+ ClassGIDatatables.RemoveGroupFromProfile(groupId, profileId)
+ gridAssignedGroups.DataSource = ClassGIDatatables.GetAssignedGroups(profileId)
+ gridAvailableGroups.DataSource = ClassGIDatatables.GetAvailableGroups(profileId)
+ Catch ex As Exception
+ Logger.Error(ex)
+ MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler beim Hinzufügen einer Gruppe:")
+ End Try
+ End Sub
+
+ Private Sub SimpleButton1_Click(sender As Object, e As EventArgs) Handles SimpleButton1.Click
+ If Not ComboBoxEditAAttrFileParam.SelectedItem Is Nothing Then
+ If GUIDTextBoxAutoAttribute.Text <> "" Then
+ Dim value As String
+
+ Select Case ComboBoxEditAAttrFileParam.SelectedIndex
+ Case 0 : value = "$filename_ext"
+ Case 1 : value = "$filename"
+ Case 2 : value = "$extension"
+ Case 3 : value = "$FileCreateDate"
+ Case 4 : value = "$FileCreatedWho"
+ Case 5 : value = "$DateDDMMYYY"
+ Case 6 : value = "$Username"
+ Case 7 : value = "$Usercode"
+ End Select
+
+ If value <> "" Then
+ VALUETextBox.Text = value
+ End If
+ End If
+ End If
+ End Sub
+
+ Private Sub SimpleButton3_Click(sender As Object, e As EventArgs) Handles SimpleButton3.Click
+ Dim str As String
+ If (FOLDER_FOR_INDEXTextEdit.Text = "") = False Then
+ str = FOLDER_FOR_INDEXTextEdit.Text & "\"
+ End If
+ If cmbAllAttributes.SelectedIndex <> -1 Then
+
+ Dim oPattern As String
+ If cmbAllAttributes.Text.EndsWith("#M") Then
+ oPattern = clsPatterns.WrapPatternValue(clsPatterns.PATTERN_ATTR_MAN, cmbAllAttributes.Text)
+ Else
+ oPattern = clsPatterns.WrapPatternValue(clsPatterns.PATTERN_ATTR_AUTO, cmbAllAttributes.Text)
+ End If
+ Me.FOLDER_FOR_INDEXTextEdit.Text = str & oPattern
+ cmbAllAttributes.SelectedIndex = -1
+ ElseIf cmbCrFolderDate.SelectedIndex <> -1 Then
+ Dim oPattern As String = clsPatterns.WrapPatternValue(clsPatterns.PATTERN_INT, cmbCrFolderDate.Text)
+ Me.FOLDER_FOR_INDEXTextEdit.Text = str & oPattern
+ cmbCrFolderDate.SelectedIndex = -1
+ ElseIf txtcrFoldermanuell.Text <> "" Then
+ Me.FOLDER_FOR_INDEXTextEdit.Text = str & txtcrFoldermanuell.Text
+ txtcrFoldermanuell.Text = ""
+ End If
+ Dim oPage = Pages.Current
+ Save_AutoIndexe(oPage)
+
+
+ End Sub
+
+ Private Sub SimpleButton4_Click(sender As Object, e As EventArgs) Handles SimpleButton4.Click
+ Try
+ If Regex.IsMatch(REGEXTextBox.Text, txtDateinameTest.Text) Then
+ MsgBox("The RegEx resulted in a proper match!", MsgBoxStyle.Information, "Perfect:")
+ Else
+ MsgBox("No Match- There might be an error in the RegEx!", MsgBoxStyle.Information, "Something wrong:")
+ End If
+ Catch ex As Exception
+ MsgBox(ex.Message, MsgBoxStyle.Exclamation, "Error in Testing Regex: ")
+ End Try
+ End Sub
+
+ Private Sub BarButtonItem2_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItemDelete.ItemClick
+ ResetMessages()
+
+ Dim result As MsgBoxResult
+
+
+ Try
+ Dim oPage = Pages.Current
+
+ Select Case oPage.TabPage.Name
+ Case XtraTabPageProfile.Name
+ If My.Application.User.Language = "de-DE" Then
+ result = MessageBox.Show("Sind Sie sicher dass Sie das ausgewählte Profil löschen wollen?", Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question)
+ Else
+ result = MessageBox.Show("Are you sure you want to delete the selected profile?", Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question)
+ End If
+
+ If result = MsgBoxResult.Yes Then
+ Dim oSQL = $"EXEC PRDD_GLOBIX_DELETE_DOCTYPE {TextEditDoctypeID.Text}"
+ If My.DatabaseECM.ExecuteNonQuery(oSQL) Then
+ TBDD_DOKUMENTARTTableAdapter.Fill(Me.GlobixDataset.TBDD_DOKUMENTART, PrimaryKey)
+ Load_TabData()
+ End If
+ End If
+
+
+ Case XtraTabPageManIndexe.Name
+ If My.Application.User.Language = "de-DE" Then
+ result = MessageBox.Show("Sind Sie sicher dass Sie das ausgewählte manuelle Attribut löschen wollen?", Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question)
+ Else
+ result = MessageBox.Show("Are you sure you want to delete this manual attribute?", Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question)
+ End If
+
+ If result = MsgBoxResult.Yes Then
+ TBDD_INDEX_MANTableAdapter.Delete(GUIDTextBoxMANINDEX.Text)
+ Load_INDEXMAN()
+ End If
+
+ Case XtraTabPageAutoIndexe.Name
+ If My.Application.User.Language = "de-DE" Then
+ result = MessageBox.Show("Sind Sie sicher dass Sie das ausgewählte automatische Attribut löschen wollen?", Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question)
+ Else
+ result = MessageBox.Show("Are you sure you want to delete the selected auto attribute?", Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question)
+ End If
+ If result = MsgBoxResult.Yes Then
+ TBDD_INDEX_AUTOMTableAdapter.Delete(GUIDTextBoxAutoAttribute.Text)
+ Load_Attribute_Auto()
+ End If
+
+ Case XtraTabPageAutoSelect.Name
+ If My.Application.User.Language = "de-DE" Then
+ result = MessageBox.Show("Sind Sie sicher dass Sie die ausgewählte Regex löschen wollen?", Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question)
+ Else
+ result = MessageBox.Show("Are you sure you want to delete the selected regex?", Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question)
+ End If
+ If result = MsgBoxResult.Yes Then
+ TBGI_REGEX_DOCTYPETableAdapter.Delete(GUIDTextBoxAutoSelect.Text)
+ Load_AutoSelect()
+ End If
+
+ End Select
+
+ oPage.IsInsert = False
+
+ ShowStatus($"{oPage.Name} deleted!")
+ Catch ex As Exception
+ ShowErrorMessage(ex)
+ End Try
+ End Sub
End Class
\ No newline at end of file
diff --git a/GUIs.ZooFlow/Administration/frmSQLDesigner.Designer.vb b/GUIs.ZooFlow/Administration/frmSQLDesigner.Designer.vb
index d6a22cf3..82b7a98e 100644
--- a/GUIs.ZooFlow/Administration/frmSQLDesigner.Designer.vb
+++ b/GUIs.ZooFlow/Administration/frmSQLDesigner.Designer.vb
@@ -23,8 +23,8 @@ Partial Class frmSQLDesigner
_
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmSQLDesigner))
- Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
+ Dim DataGridViewCellStyle5 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
+ Dim DataGridViewCellStyle6 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Me.Label14 = New System.Windows.Forms.Label()
Me.cmbConnection = New System.Windows.Forms.ComboBox()
Me.Label2 = New System.Windows.Forms.Label()
@@ -88,7 +88,7 @@ Partial Class frmSQLDesigner
'cmbStatic
'
Me.cmbStatic.FormattingEnabled = True
- Me.cmbStatic.Items.AddRange(New Object() {"USERNAME", "MACHINE", "DOMAIN", "DATE"})
+ Me.cmbStatic.Items.AddRange(New Object() {"MACHINE", "DOMAIN"})
Me.cmbStatic.Location = New System.Drawing.Point(503, 28)
Me.cmbStatic.Name = "cmbStatic"
Me.cmbStatic.Size = New System.Drawing.Size(194, 25)
@@ -118,14 +118,14 @@ Partial Class frmSQLDesigner
Me.Label3.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label3.Location = New System.Drawing.Point(739, 10)
Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(118, 16)
+ Me.Label3.Size = New System.Drawing.Size(99, 16)
Me.Label3.TabIndex = 104
- Me.Label3.Text = "Anwendungsdaten:"
+ Me.Label3.Text = "Userparameter:"
'
'cmbUser
'
Me.cmbUser.FormattingEnabled = True
- Me.cmbUser.Items.AddRange(New Object() {"PRENAME", "SURNAME", "SHORTNAME", "LANGUAGE", "EMAIL", "USER_ID", "PROFILE_ID", "PROFILE_TITLE"})
+ Me.cmbUser.Items.AddRange(New Object() {"PRENAME", "SURNAME", "SHORTNAME", "LANGUAGE", "EMAIL", "USER_ID"})
Me.cmbUser.Location = New System.Drawing.Point(742, 29)
Me.cmbUser.Name = "cmbUser"
Me.cmbUser.Size = New System.Drawing.Size(194, 25)
@@ -213,8 +213,8 @@ Partial Class frmSQLDesigner
'
Me.dgvPlaceholders.AllowUserToAddRows = False
Me.dgvPlaceholders.AllowUserToDeleteRows = False
- DataGridViewCellStyle1.BackColor = System.Drawing.Color.Cyan
- Me.dgvPlaceholders.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
+ DataGridViewCellStyle5.BackColor = System.Drawing.Color.Cyan
+ Me.dgvPlaceholders.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle5
Me.dgvPlaceholders.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
Me.dgvPlaceholders.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.dgvPlaceholders.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.colPlaceholder, Me.colReplace})
@@ -251,8 +251,8 @@ Partial Class frmSQLDesigner
'
Me.dgvResult.AllowUserToAddRows = False
Me.dgvResult.AllowUserToDeleteRows = False
- DataGridViewCellStyle2.BackColor = System.Drawing.Color.Cyan
- Me.dgvResult.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
+ DataGridViewCellStyle6.BackColor = System.Drawing.Color.Cyan
+ Me.dgvResult.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle6
Me.dgvResult.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.dgvResult.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
@@ -338,6 +338,7 @@ Partial Class frmSQLDesigner
Me.Controls.Add(Me.Label14)
Me.Controls.Add(Me.cmbConnection)
Me.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.MinimizeBox = False
Me.Name = "frmSQLDesigner"
diff --git a/GUIs.ZooFlow/Administration/frmSQLDesigner.resx b/GUIs.ZooFlow/Administration/frmSQLDesigner.resx
index 12627ea5..17a47334 100644
--- a/GUIs.ZooFlow/Administration/frmSQLDesigner.resx
+++ b/GUIs.ZooFlow/Administration/frmSQLDesigner.resx
@@ -184,6 +184,132 @@
xAAADsQBlSsOGwAAAFxJREFUOE/NjFEKgDAMQ3e23v88/Y1YOslqhE1hGHgfS5fXAHxCliuMD4q7o5Kn
yJTAzC72CM5PTBUwfXMT8OiJnwuYOmL6ZhBwlCBPkT2CSp4iUvAGWa4gy3nQDiNEflNl/3oXAAAAAElF
TkSuQmCC
+
+
+
+
+ AAABAAMAICAQAAEABADoAgAANgAAACAgAAABAAgAqAgAAB4DAAAgIAAAAQAgAKgQAADGCwAAKAAAACAA
+ AABAAAAAAQAEAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACAgACAAAAAgACAAICA
+ AACAgIAAwMDAAAAA/wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAAAP///////wAAAAAAAAAAD///
+ ////////8AAAAAAAD//4d3d3d3d3j//wAAAAD/+Hd3d3d3d3d3d4//AAAA/3d3d3d3d3d3d3d3/wAAD/
+ d3d3d3d3d3d3d3d3/wAA/3d3d3d3d3d3d3d3d/8AAP93d3d3d3d3d3d3d3f/AAD/d3d3d3d3d3d3d3d3
+ /wAA/3d3d3d3d3d3d3d3d/8AAP93d3d3d3d3d3d3d3f/AAD/d3d3d3d3d3d3d3d3/wAA/3d3d3d3d3d3
+ d3d3d/8AAP93d3d3d3d3d3d3d3f/AAD/d3d3d3d3d3d3d3d3/wAA/3d3d3d3d3d3d3d3d/8AAP93d3d3
+ d3d3d3d3d3f/AAD/d3d3d3d3d3d3d3d3/wAA/3d3d3d3d3d3d3d3d/8AAP93d3d3d3d3d3d3d3f/AAD/
+ d3d3d3d3d3d3d3d3/wAA/3d3d3d3d3d3d3d3d/8AAP93d3eI/////4h3d3f/AAD/d3f//////////3d3
+ /wAA/3eP///////////4d/8AAP93j///////////+Hf/AAD/d3f//////////3d3/wAAD/d3d4j/////
+ iHd3f/AAAA//h3d3d3d3d3d3eP/wAAAAD//4d3d3d3d3j//wAAAAAAAP///////////wAAAAAAAAAAD/
+ //////8AAAAAAP/AA//+AAB/+AAAH+AAAAfgAAAHwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AA
+ AAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA+AA
+ AAfgAAAH+AAAH/4AAH//wAP/KAAAACAAAABAAAAAAQAIAAAAAAAABAAAAAAAAAAAAAAAAQAAAAEAAAAA
+ AABCQkIATU1NAG9vbwB5eXkAhoaGAJGRkQCamZkApKOkALOzswDFxMUAycnJANDPzwDm5OUA6+vrAPHv
+ 8AD29vYA+Pj4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//
+ /wAAAAAAAAAAAAAAEREQEBAQEBAQEBERAAAAAAAAAAAAAAAAAAAAAAAQEBAQEBAQEBAQEBAQEBAQEBAA
+ AAAAAAAAAAAAAAAQEBAOCQYDAQEBAQEBAQIDBgkOEBAQAAAAAAAAAAAREBALBAEBAQEBAQEBAQEBAQEB
+ AQEECxAQEQAAAAAAABAQBQEBAQEBAQEBAQEBAQEBAQEBAQEBBRAQAAAAAAAQEAUBAQEBAQEBAQEBAQEB
+ AQEBAQEBAQEBBRAQAAAAABAQAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBEBAAAAAAEBABAQEBAQEBAQEB
+ AQEBAQEBAQEBAQEBAQEQEAAAAAAQEAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBARAQAAAAABAQAQEBAQEB
+ AQEBAQEBAQEBAQEBAQEBAQEBEBAAAAAAEBABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEQEAAAAAAQEAEB
+ AQEBAQEBAQEBAQEBAQEBAQEBAQEBARAQAAAAABAQAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBEBAAAAAA
+ EBABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEQEAAAAAAQEAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBARAQ
+ AAAAABAQAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBEBAAAAAAEBABAQEBAQEBAQEBAQEBAQEBAQEBAQEB
+ AQEQEAAAAAAQEAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBARAQAAAAABAQAQEBAQEBAQEBAQEBAQEBAQEB
+ AQEBAQEBEBAAAAAAEBABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEQEAAAAAAQEAEBAQEBAQEBAQEBAQEB
+ AQEBAQEBAQEBARAQAAAAABAQAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBEBAAAAAAEBABAQEBAQQICg0P
+ Dw8PDw8NCggEAQEBAQEQEAAAAAAQEAEBAgcNDw8PDw8PDw8PDw8PDw8NBwIBARAQAAAAABAOAQEMDw8P
+ Dw8PDw8PDw8PDw8PDw8PDAEBEBAAAAAAEA4BAQwPDw8PDw8PDw8PDw8PDw8PDw8MAQEQEAAAAAAQEAUB
+ AgcNDw8PDw8PDw8PDw8PDw8NBwIBBRAQAAAAAAAQDgUBAQEECAoNDw8PDw8PDQoIBAEBAQUOEAAAAAAA
+ ABEQEAsEAQEBAQEBAQEBAQEBAQEBAQQLEBARAAAAAAAAAAAQEBAOCQYDAQEBAQEBAQEDBgkOEBAQAAAA
+ AAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAARERAQEBAQEBAQEREAAAAA
+ AAAAAAAA/8AD//4AAH/4AAAf4AAAB+AAAAfAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AA
+ AAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAD4AAAB+AA
+ AAf4AAAf/gAAf//AA/8oAAAAIAAAAEAAAAABACAAAAAAAIAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD29vYg9vb2cPb29p/29va/9vb2//b29v/29vb/9vb2//b2
+ 9v/29vb/9vb2//b29v/29va/9vb2n/b29nD29vYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPb29hD29vZw9vb23/b29v/29vb/9vb2//b29v/29vb/9vb2//b2
+ 9v/29vb/9vb2//b29v/29vb/9vb2//b29v/29vb/9vb2//b29v/29vbf9vb2cPb29hAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD29vZQ9vb27/b29v/29vb/6+vr/7Ozs/+RkZH/b29v/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9NTU3/b29v/5GRkf+zs7P/6+vr//b29v/29vb/9vb27/b2
+ 9lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9vb2n/b29v/29vb/ycnJ/3p6ev9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/enp6/8nJ
+ yf/29vb/9vb2//b29p8AAAAAAAAAAAAAAAAAAAAAAAAAAPb29nD29vb/9vb2/4aGhv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/4aGhv/29vb/9vb2//b29nAAAAAAAAAAAAAAAAAAAAAA9vb23/b29v+Ghob/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/4aGhv/29vb/9vb23wAAAAAAAAAAAAAAAAAAAAD29vb/9vb2/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC//b29v/29vb/AAAAAAAAAAAAAAAAAAAAAPb2
+ 9v/29vb/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/9vb2//b29v8AAAAAAAAAAAAA
+ AAAAAAAA9vb2//b29v9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv/29vb/9vb2/wAA
+ AAAAAAAAAAAAAAAAAAD29vb/9vb2/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC//b2
+ 9v/29vb/AAAAAAAAAAAAAAAAAAAAAPb29v/29vb/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/9vb2//b29v8AAAAAAAAAAAAAAAAAAAAA9vb2//b29v9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv/29vb/9vb2/wAAAAAAAAAAAAAAAAAAAAD29vb/9vb2/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC//b29v/29vb/AAAAAAAAAAAAAAAAAAAAAPb29v/29vb/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/9vb2//b29v8AAAAAAAAAAAAAAAAAAAAA9vb2//b2
+ 9v9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv/29vb/9vb2/wAAAAAAAAAAAAAAAAAA
+ AAD29vb/9vb2/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC//b29v/29vb/AAAAAAAA
+ AAAAAAAAAAAAAPb29v/29vb/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/9vb2//b2
+ 9v8AAAAAAAAAAAAAAAAAAAAA9vb2//b29v9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv/29vb/9vb2/wAAAAAAAAAAAAAAAAAAAAD29vb/9vb2/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC//b29v/29vb/AAAAAAAAAAAAAAAAAAAAAPb29v/29vb/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/9vb2//b29v8AAAAAAAAAAAAAAAAAAAAA9vb2//b29v9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv/29vb/9vb2/wAAAAAAAAAAAAAAAAAAAAD29vb/9vb2/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC//b29v/29vb/AAAAAAAAAAAAAAAAAAAAAPb2
+ 9v/29vb/QkJC/0JCQv9CQkL/QkJC/0JCQv95eHj/pKOk/8XExf/m5OX/8e/w//Hv8P/x7/D/8e/w//Hv
+ 8P/x7/D/5uTl/8XExf+ko6T/eXh4/0JCQv9CQkL/QkJC/0JCQv9CQkL/9vb2//b29v8AAAAAAAAAAAAA
+ AAAAAAAA9vb2//b29v9CQkL/QkJC/01NTf+amZn/5uTl//Hv8P/x7/D/8e/w//Hv8P/x7/D/8e/w//Hv
+ 8P/x7/D/8e/w//Hv8P/x7/D/8e/w//Hv8P/x7/D/5uTl/5qZmf9NTU3/QkJC/0JCQv/29vb/9vb2/wAA
+ AAAAAAAAAAAAAAAAAAD29vb/6+vr/0JCQv9CQkL/0M/P//Hv8P/x7/D/8e/w//Hv8P/x7/D/8e/w//Hv
+ 8P/x7/D/8e/w//Hv8P/x7/D/8e/w//Hv8P/x7/D/8e/w//Hv8P/x7/D/8e/w/9DPz/9CQkL/QkJC//b2
+ 9v/29vb/AAAAAAAAAAAAAAAAAAAAAPb29v/r6+v/QkJC/0JCQv/Qz8//8e/w//Hv8P/x7/D/8e/w//Hv
+ 8P/x7/D/8e/w//Hv8P/x7/D/8e/w//Hv8P/x7/D/8e/w//Hv8P/x7/D/8e/w//Hv8P/x7/D/0M/P/0JC
+ Qv9CQkL/9vb2//b29v8AAAAAAAAAAAAAAAAAAAAA9vb23/b29v+Ghob/QkJC/01NTf+amZn/5uTl//Hv
+ 8P/x7/D/8e/w//Hv8P/x7/D/8e/w//Hv8P/x7/D/8e/w//Hv8P/x7/D/8e/w//Hv8P/x7/D/5uTl/5qZ
+ mf9NTU3/QkJC/4aGhv/29vb/9vb23wAAAAAAAAAAAAAAAAAAAAD29vZw9vb2/+vr6/+Ghob/QkJC/0JC
+ Qv9CQkL/eXh4/6SjpP/FxMX/5uTl//Hv8P/x7/D/8e/w//Hv8P/x7/D/8e/w/+bk5f/FxMX/pKOk/3l4
+ eP9CQkL/QkJC/0JCQv+Ghob/6+vr//b29v/29vZwAAAAAAAAAAAAAAAAAAAAAAAAAAD29vaf9vb2//b2
+ 9v/Jycn/enp6/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/QkJC/0JCQv96enr/ycnJ//b29v/29vb/9vb2nwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAD29vZQ9vb27/b29v/29vb/6+vr/7Ozs/+RkZH/b29v/0JCQv9CQkL/QkJC/0JCQv9CQkL/QkJC/0JC
+ Qv9CQkL/b29v/5GRkf+zs7P/6+vr//b29v/29vb/9vb27/b29lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAD29vYQ9vb2cPb29t/29vb/9vb2//b29v/29vb/9vb2//b29v/29vb/9vb2//b2
+ 9v/29vb/9vb2//b29v/29vb/9vb2//b29v/29vb/9vb23/b29nD29vYQAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPb29iD29vZw9vb2n/b29r/29vb/9vb2//b2
+ 9v/29vb/9vb2//b29v/29vb/9vb2//b29r/29vaf9vb2cPb29iAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAP8AAP/4AAAf8AAAD+AAAAfAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AA
+ AAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AA
+ AAPgAAAH8AAAD/gAAB//AAD/
\ No newline at end of file
diff --git a/GUIs.ZooFlow/Globix/GlobixDataset.Designer.vb b/GUIs.ZooFlow/Globix/GlobixDataset.Designer.vb
index 7e135feb..28536368 100644
--- a/GUIs.ZooFlow/Globix/GlobixDataset.Designer.vb
+++ b/GUIs.ZooFlow/Globix/GlobixDataset.Designer.vb
@@ -31,12 +31,16 @@ Partial Public Class GlobixDataset
Private tableTBDD_INDEX_AUTOM As TBDD_INDEX_AUTOMDataTable
+ Private tableTBGI_REGEX_DOCTYPE As TBGI_REGEX_DOCTYPEDataTable
+
Private tableTBTEMP_INDEXRESULTS As TBTEMP_INDEXRESULTSDataTable
Private relationFK_TBDD_INDEX_MAN_DAID As Global.System.Data.DataRelation
Private relationFK_TBDD_INDEX_AUTOM_DOCID As Global.System.Data.DataRelation
+ Private relationFK_TBGI_REGEX_DOCTYPE_DTID As Global.System.Data.DataRelation
+
Private _schemaSerializationMode As Global.System.Data.SchemaSerializationMode = Global.System.Data.SchemaSerializationMode.IncludeSchema
_
+ Public ReadOnly Property TBGI_REGEX_DOCTYPE() As TBGI_REGEX_DOCTYPEDataTable
+ Get
+ Return Me.tableTBGI_REGEX_DOCTYPE
+ End Get
+ End Property
+
_
+ Private Function ShouldSerializeTBGI_REGEX_DOCTYPE() As Boolean
+ Return false
+ End Function
+
_
Private Function ShouldSerializeTBTEMP_INDEXRESULTS() As Boolean
@@ -387,6 +424,9 @@ Partial Public Class GlobixDataset
_
Public Delegate Sub TBDD_INDEX_AUTOMRowChangeEventHandler(ByVal sender As Object, ByVal e As TBDD_INDEX_AUTOMRowChangeEvent)
+ _
+ Public Delegate Sub TBGI_REGEX_DOCTYPERowChangeEventHandler(ByVal sender As Object, ByVal e As TBGI_REGEX_DOCTYPERowChangeEvent)
+
_
Public Delegate Sub TBTEMP_INDEXRESULTSRowChangeEventHandler(ByVal sender As Object, ByVal e As TBTEMP_INDEXRESULTSRowChangeEvent)
@@ -2004,6 +2044,356 @@ Partial Public Class GlobixDataset
End Function
End Class
+ '''
+ '''Represents the strongly named DataTable class.
+ '''
+ _
+ Partial Public Class TBGI_REGEX_DOCTYPEDataTable
+ Inherits Global.System.Data.TypedTableBase(Of TBGI_REGEX_DOCTYPERow)
+
+ Private columnGUID As Global.System.Data.DataColumn
+
+ Private columnREGEX As Global.System.Data.DataColumn
+
+ Private columnDOCTYPE_ID As Global.System.Data.DataColumn
+
+ Private columnADDED_WHO As Global.System.Data.DataColumn
+
+ Private columnADDED_WHEN As Global.System.Data.DataColumn
+
+ Private columnCHANGED_WHO As Global.System.Data.DataColumn
+
+ Private columnCHANGED_WHEN As Global.System.Data.DataColumn
+
+ _
+ Public Sub New()
+ MyBase.New
+ Me.TableName = "TBGI_REGEX_DOCTYPE"
+ Me.BeginInit
+ Me.InitClass
+ Me.EndInit
+ End Sub
+
+ _
+ Friend Sub New(ByVal table As Global.System.Data.DataTable)
+ MyBase.New
+ Me.TableName = table.TableName
+ If (table.CaseSensitive <> table.DataSet.CaseSensitive) Then
+ Me.CaseSensitive = table.CaseSensitive
+ End If
+ If (table.Locale.ToString <> table.DataSet.Locale.ToString) Then
+ Me.Locale = table.Locale
+ End If
+ If (table.Namespace <> table.DataSet.Namespace) Then
+ Me.Namespace = table.Namespace
+ End If
+ Me.Prefix = table.Prefix
+ Me.MinimumCapacity = table.MinimumCapacity
+ End Sub
+
+ _
+ Protected Sub New(ByVal info As Global.System.Runtime.Serialization.SerializationInfo, ByVal context As Global.System.Runtime.Serialization.StreamingContext)
+ MyBase.New(info, context)
+ Me.InitVars
+ End Sub
+
+ _
+ Public ReadOnly Property GUIDColumn() As Global.System.Data.DataColumn
+ Get
+ Return Me.columnGUID
+ End Get
+ End Property
+
+ _
+ Public ReadOnly Property REGEXColumn() As Global.System.Data.DataColumn
+ Get
+ Return Me.columnREGEX
+ End Get
+ End Property
+
+ _
+ Public ReadOnly Property DOCTYPE_IDColumn() As Global.System.Data.DataColumn
+ Get
+ Return Me.columnDOCTYPE_ID
+ End Get
+ End Property
+
+ _
+ Public ReadOnly Property ADDED_WHOColumn() As Global.System.Data.DataColumn
+ Get
+ Return Me.columnADDED_WHO
+ End Get
+ End Property
+
+ _
+ Public ReadOnly Property ADDED_WHENColumn() As Global.System.Data.DataColumn
+ Get
+ Return Me.columnADDED_WHEN
+ End Get
+ End Property
+
+ _
+ Public ReadOnly Property CHANGED_WHOColumn() As Global.System.Data.DataColumn
+ Get
+ Return Me.columnCHANGED_WHO
+ End Get
+ End Property
+
+ _
+ Public ReadOnly Property CHANGED_WHENColumn() As Global.System.Data.DataColumn
+ Get
+ Return Me.columnCHANGED_WHEN
+ End Get
+ End Property
+
+ _
+ Public ReadOnly Property Count() As Integer
+ Get
+ Return Me.Rows.Count
+ End Get
+ End Property
+
+ _
+ Public Default ReadOnly Property Item(ByVal index As Integer) As TBGI_REGEX_DOCTYPERow
+ Get
+ Return CType(Me.Rows(index),TBGI_REGEX_DOCTYPERow)
+ End Get
+ End Property
+
+ _
+ Public Event TBGI_REGEX_DOCTYPERowChanging As TBGI_REGEX_DOCTYPERowChangeEventHandler
+
+ _
+ Public Event TBGI_REGEX_DOCTYPERowChanged As TBGI_REGEX_DOCTYPERowChangeEventHandler
+
+ _
+ Public Event TBGI_REGEX_DOCTYPERowDeleting As TBGI_REGEX_DOCTYPERowChangeEventHandler
+
+ _
+ Public Event TBGI_REGEX_DOCTYPERowDeleted As TBGI_REGEX_DOCTYPERowChangeEventHandler
+
+ _
+ Public Overloads Sub AddTBGI_REGEX_DOCTYPERow(ByVal row As TBGI_REGEX_DOCTYPERow)
+ Me.Rows.Add(row)
+ End Sub
+
+ _
+ Public Overloads Function AddTBGI_REGEX_DOCTYPERow(ByVal REGEX As String, ByVal parentTBDD_DOKUMENTARTRowByFK_TBGI_REGEX_DOCTYPE_DTID As TBDD_DOKUMENTARTRow, ByVal ADDED_WHO As String, ByVal ADDED_WHEN As Date, ByVal CHANGED_WHO As String, ByVal CHANGED_WHEN As Date) As TBGI_REGEX_DOCTYPERow
+ Dim rowTBGI_REGEX_DOCTYPERow As TBGI_REGEX_DOCTYPERow = CType(Me.NewRow,TBGI_REGEX_DOCTYPERow)
+ Dim columnValuesArray() As Object = New Object() {Nothing, REGEX, Nothing, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN}
+ If (Not (parentTBDD_DOKUMENTARTRowByFK_TBGI_REGEX_DOCTYPE_DTID) Is Nothing) Then
+ columnValuesArray(2) = parentTBDD_DOKUMENTARTRowByFK_TBGI_REGEX_DOCTYPE_DTID(0)
+ End If
+ rowTBGI_REGEX_DOCTYPERow.ItemArray = columnValuesArray
+ Me.Rows.Add(rowTBGI_REGEX_DOCTYPERow)
+ Return rowTBGI_REGEX_DOCTYPERow
+ End Function
+
+ _
+ Public Function FindByGUID(ByVal GUID As Integer) As TBGI_REGEX_DOCTYPERow
+ Return CType(Me.Rows.Find(New Object() {GUID}),TBGI_REGEX_DOCTYPERow)
+ End Function
+
+ _
+ Public Overrides Function Clone() As Global.System.Data.DataTable
+ Dim cln As TBGI_REGEX_DOCTYPEDataTable = CType(MyBase.Clone,TBGI_REGEX_DOCTYPEDataTable)
+ cln.InitVars
+ Return cln
+ End Function
+
+ _
+ Protected Overrides Function CreateInstance() As Global.System.Data.DataTable
+ Return New TBGI_REGEX_DOCTYPEDataTable()
+ End Function
+
+ _
+ Friend Sub InitVars()
+ Me.columnGUID = MyBase.Columns("GUID")
+ Me.columnREGEX = MyBase.Columns("REGEX")
+ Me.columnDOCTYPE_ID = MyBase.Columns("DOCTYPE_ID")
+ Me.columnADDED_WHO = MyBase.Columns("ADDED_WHO")
+ Me.columnADDED_WHEN = MyBase.Columns("ADDED_WHEN")
+ Me.columnCHANGED_WHO = MyBase.Columns("CHANGED_WHO")
+ Me.columnCHANGED_WHEN = MyBase.Columns("CHANGED_WHEN")
+ End Sub
+
+ _
+ Private Sub InitClass()
+ Me.columnGUID = New Global.System.Data.DataColumn("GUID", GetType(Integer), Nothing, Global.System.Data.MappingType.Element)
+ MyBase.Columns.Add(Me.columnGUID)
+ Me.columnREGEX = New Global.System.Data.DataColumn("REGEX", GetType(String), Nothing, Global.System.Data.MappingType.Element)
+ MyBase.Columns.Add(Me.columnREGEX)
+ Me.columnDOCTYPE_ID = New Global.System.Data.DataColumn("DOCTYPE_ID", GetType(Integer), Nothing, Global.System.Data.MappingType.Element)
+ MyBase.Columns.Add(Me.columnDOCTYPE_ID)
+ Me.columnADDED_WHO = New Global.System.Data.DataColumn("ADDED_WHO", GetType(String), Nothing, Global.System.Data.MappingType.Element)
+ MyBase.Columns.Add(Me.columnADDED_WHO)
+ Me.columnADDED_WHEN = New Global.System.Data.DataColumn("ADDED_WHEN", GetType(Date), Nothing, Global.System.Data.MappingType.Element)
+ MyBase.Columns.Add(Me.columnADDED_WHEN)
+ Me.columnCHANGED_WHO = New Global.System.Data.DataColumn("CHANGED_WHO", GetType(String), Nothing, Global.System.Data.MappingType.Element)
+ MyBase.Columns.Add(Me.columnCHANGED_WHO)
+ Me.columnCHANGED_WHEN = New Global.System.Data.DataColumn("CHANGED_WHEN", GetType(Date), Nothing, Global.System.Data.MappingType.Element)
+ MyBase.Columns.Add(Me.columnCHANGED_WHEN)
+ Me.Constraints.Add(New Global.System.Data.UniqueConstraint("Constraint1", New Global.System.Data.DataColumn() {Me.columnGUID}, true))
+ Me.columnGUID.AutoIncrement = true
+ Me.columnGUID.AutoIncrementSeed = 1
+ Me.columnGUID.AllowDBNull = false
+ Me.columnGUID.ReadOnly = true
+ Me.columnGUID.Unique = true
+ Me.columnREGEX.AllowDBNull = false
+ Me.columnREGEX.MaxLength = 500
+ Me.columnADDED_WHO.AllowDBNull = false
+ Me.columnADDED_WHO.MaxLength = 50
+ Me.columnCHANGED_WHO.MaxLength = 50
+ End Sub
+
+ _
+ Public Function NewTBGI_REGEX_DOCTYPERow() As TBGI_REGEX_DOCTYPERow
+ Return CType(Me.NewRow,TBGI_REGEX_DOCTYPERow)
+ End Function
+
+ _
+ Protected Overrides Function NewRowFromBuilder(ByVal builder As Global.System.Data.DataRowBuilder) As Global.System.Data.DataRow
+ Return New TBGI_REGEX_DOCTYPERow(builder)
+ End Function
+
+ _
+ Protected Overrides Function GetRowType() As Global.System.Type
+ Return GetType(TBGI_REGEX_DOCTYPERow)
+ End Function
+
+ _
+ Protected Overrides Sub OnRowChanged(ByVal e As Global.System.Data.DataRowChangeEventArgs)
+ MyBase.OnRowChanged(e)
+ If (Not (Me.TBGI_REGEX_DOCTYPERowChangedEvent) Is Nothing) Then
+ RaiseEvent TBGI_REGEX_DOCTYPERowChanged(Me, New TBGI_REGEX_DOCTYPERowChangeEvent(CType(e.Row,TBGI_REGEX_DOCTYPERow), e.Action))
+ End If
+ End Sub
+
+ _
+ Protected Overrides Sub OnRowChanging(ByVal e As Global.System.Data.DataRowChangeEventArgs)
+ MyBase.OnRowChanging(e)
+ If (Not (Me.TBGI_REGEX_DOCTYPERowChangingEvent) Is Nothing) Then
+ RaiseEvent TBGI_REGEX_DOCTYPERowChanging(Me, New TBGI_REGEX_DOCTYPERowChangeEvent(CType(e.Row,TBGI_REGEX_DOCTYPERow), e.Action))
+ End If
+ End Sub
+
+ _
+ Protected Overrides Sub OnRowDeleted(ByVal e As Global.System.Data.DataRowChangeEventArgs)
+ MyBase.OnRowDeleted(e)
+ If (Not (Me.TBGI_REGEX_DOCTYPERowDeletedEvent) Is Nothing) Then
+ RaiseEvent TBGI_REGEX_DOCTYPERowDeleted(Me, New TBGI_REGEX_DOCTYPERowChangeEvent(CType(e.Row,TBGI_REGEX_DOCTYPERow), e.Action))
+ End If
+ End Sub
+
+ _
+ Protected Overrides Sub OnRowDeleting(ByVal e As Global.System.Data.DataRowChangeEventArgs)
+ MyBase.OnRowDeleting(e)
+ If (Not (Me.TBGI_REGEX_DOCTYPERowDeletingEvent) Is Nothing) Then
+ RaiseEvent TBGI_REGEX_DOCTYPERowDeleting(Me, New TBGI_REGEX_DOCTYPERowChangeEvent(CType(e.Row,TBGI_REGEX_DOCTYPERow), e.Action))
+ End If
+ End Sub
+
+ _
+ Public Sub RemoveTBGI_REGEX_DOCTYPERow(ByVal row As TBGI_REGEX_DOCTYPERow)
+ Me.Rows.Remove(row)
+ End Sub
+
+ _
+ Public Shared Function GetTypedTableSchema(ByVal xs As Global.System.Xml.Schema.XmlSchemaSet) As Global.System.Xml.Schema.XmlSchemaComplexType
+ Dim type As Global.System.Xml.Schema.XmlSchemaComplexType = New Global.System.Xml.Schema.XmlSchemaComplexType()
+ Dim sequence As Global.System.Xml.Schema.XmlSchemaSequence = New Global.System.Xml.Schema.XmlSchemaSequence()
+ Dim ds As GlobixDataset = New GlobixDataset()
+ Dim any1 As Global.System.Xml.Schema.XmlSchemaAny = New Global.System.Xml.Schema.XmlSchemaAny()
+ any1.Namespace = "http://www.w3.org/2001/XMLSchema"
+ any1.MinOccurs = New Decimal(0)
+ any1.MaxOccurs = Decimal.MaxValue
+ any1.ProcessContents = Global.System.Xml.Schema.XmlSchemaContentProcessing.Lax
+ sequence.Items.Add(any1)
+ Dim any2 As Global.System.Xml.Schema.XmlSchemaAny = New Global.System.Xml.Schema.XmlSchemaAny()
+ any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"
+ any2.MinOccurs = New Decimal(1)
+ any2.ProcessContents = Global.System.Xml.Schema.XmlSchemaContentProcessing.Lax
+ sequence.Items.Add(any2)
+ Dim attribute1 As Global.System.Xml.Schema.XmlSchemaAttribute = New Global.System.Xml.Schema.XmlSchemaAttribute()
+ attribute1.Name = "namespace"
+ attribute1.FixedValue = ds.Namespace
+ type.Attributes.Add(attribute1)
+ Dim attribute2 As Global.System.Xml.Schema.XmlSchemaAttribute = New Global.System.Xml.Schema.XmlSchemaAttribute()
+ attribute2.Name = "tableTypeName"
+ attribute2.FixedValue = "TBGI_REGEX_DOCTYPEDataTable"
+ type.Attributes.Add(attribute2)
+ type.Particle = sequence
+ Dim dsSchema As Global.System.Xml.Schema.XmlSchema = ds.GetSchemaSerializable
+ If xs.Contains(dsSchema.TargetNamespace) Then
+ Dim s1 As Global.System.IO.MemoryStream = New Global.System.IO.MemoryStream()
+ Dim s2 As Global.System.IO.MemoryStream = New Global.System.IO.MemoryStream()
+ Try
+ Dim schema As Global.System.Xml.Schema.XmlSchema = Nothing
+ dsSchema.Write(s1)
+ Dim schemas As Global.System.Collections.IEnumerator = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator
+ Do While schemas.MoveNext
+ schema = CType(schemas.Current,Global.System.Xml.Schema.XmlSchema)
+ s2.SetLength(0)
+ schema.Write(s2)
+ If (s1.Length = s2.Length) Then
+ s1.Position = 0
+ s2.Position = 0
+
+ Do While ((s1.Position <> s1.Length) _
+ AndAlso (s1.ReadByte = s2.ReadByte))
+
+
+ Loop
+ If (s1.Position = s1.Length) Then
+ Return type
+ End If
+ End If
+
+ Loop
+ Finally
+ If (Not (s1) Is Nothing) Then
+ s1.Close
+ End If
+ If (Not (s2) Is Nothing) Then
+ s2.Close
+ End If
+ End Try
+ End If
+ xs.Add(dsSchema)
+ Return type
+ End Function
+ End Class
+
'''
'''Represents the strongly named DataTable class.
'''
@@ -2605,6 +2995,16 @@ Partial Public Class GlobixDataset
Return CType(MyBase.GetChildRows(Me.Table.ChildRelations("FK_TBDD_INDEX_AUTOM_DOCID")),TBDD_INDEX_AUTOMRow())
End If
End Function
+
+ _
+ Public Function GetTBGI_REGEX_DOCTYPERows() As TBGI_REGEX_DOCTYPERow()
+ If (Me.Table.ChildRelations("FK_TBGI_REGEX_DOCTYPE_DTID") Is Nothing) Then
+ Return New TBGI_REGEX_DOCTYPERow(-1) {}
+ Else
+ Return CType(MyBase.GetChildRows(Me.Table.ChildRelations("FK_TBGI_REGEX_DOCTYPE_DTID")),TBGI_REGEX_DOCTYPERow())
+ End If
+ End Function
End Class
'''
@@ -3260,6 +3660,174 @@ Partial Public Class GlobixDataset
End Sub
End Class
+ '''
+ '''Represents strongly named DataRow class.
+ '''
+ Partial Public Class TBGI_REGEX_DOCTYPERow
+ Inherits Global.System.Data.DataRow
+
+ Private tableTBGI_REGEX_DOCTYPE As TBGI_REGEX_DOCTYPEDataTable
+
+ _
+ Friend Sub New(ByVal rb As Global.System.Data.DataRowBuilder)
+ MyBase.New(rb)
+ Me.tableTBGI_REGEX_DOCTYPE = CType(Me.Table,TBGI_REGEX_DOCTYPEDataTable)
+ End Sub
+
+ _
+ Public Property GUID() As Integer
+ Get
+ Return CType(Me(Me.tableTBGI_REGEX_DOCTYPE.GUIDColumn),Integer)
+ End Get
+ Set
+ Me(Me.tableTBGI_REGEX_DOCTYPE.GUIDColumn) = value
+ End Set
+ End Property
+
+ _
+ Public Property REGEX() As String
+ Get
+ Return CType(Me(Me.tableTBGI_REGEX_DOCTYPE.REGEXColumn),String)
+ End Get
+ Set
+ Me(Me.tableTBGI_REGEX_DOCTYPE.REGEXColumn) = value
+ End Set
+ End Property
+
+ _
+ Public Property DOCTYPE_ID() As Integer
+ Get
+ Try
+ Return CType(Me(Me.tableTBGI_REGEX_DOCTYPE.DOCTYPE_IDColumn),Integer)
+ Catch e As Global.System.InvalidCastException
+ Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte DOCTYPE_ID in Tabelle TBGI_REGEX_DOCTYPE ist DBNull.", e)
+ End Try
+ End Get
+ Set
+ Me(Me.tableTBGI_REGEX_DOCTYPE.DOCTYPE_IDColumn) = value
+ End Set
+ End Property
+
+ _
+ Public Property ADDED_WHO() As String
+ Get
+ Return CType(Me(Me.tableTBGI_REGEX_DOCTYPE.ADDED_WHOColumn),String)
+ End Get
+ Set
+ Me(Me.tableTBGI_REGEX_DOCTYPE.ADDED_WHOColumn) = value
+ End Set
+ End Property
+
+ _
+ Public Property ADDED_WHEN() As Date
+ Get
+ Try
+ Return CType(Me(Me.tableTBGI_REGEX_DOCTYPE.ADDED_WHENColumn),Date)
+ Catch e As Global.System.InvalidCastException
+ Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte ADDED_WHEN in Tabelle TBGI_REGEX_DOCTYPE ist DBNull.", e)
+ End Try
+ End Get
+ Set
+ Me(Me.tableTBGI_REGEX_DOCTYPE.ADDED_WHENColumn) = value
+ End Set
+ End Property
+
+ _
+ Public Property CHANGED_WHO() As String
+ Get
+ Try
+ Return CType(Me(Me.tableTBGI_REGEX_DOCTYPE.CHANGED_WHOColumn),String)
+ Catch e As Global.System.InvalidCastException
+ Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte CHANGED_WHO in Tabelle TBGI_REGEX_DOCTYPE ist DBNull.", e)
+ End Try
+ End Get
+ Set
+ Me(Me.tableTBGI_REGEX_DOCTYPE.CHANGED_WHOColumn) = value
+ End Set
+ End Property
+
+ _
+ Public Property CHANGED_WHEN() As Date
+ Get
+ Try
+ Return CType(Me(Me.tableTBGI_REGEX_DOCTYPE.CHANGED_WHENColumn),Date)
+ Catch e As Global.System.InvalidCastException
+ Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte CHANGED_WHEN in Tabelle TBGI_REGEX_DOCTYPE ist DBNull.", e)
+ End Try
+ End Get
+ Set
+ Me(Me.tableTBGI_REGEX_DOCTYPE.CHANGED_WHENColumn) = value
+ End Set
+ End Property
+
+ _
+ Public Property TBDD_DOKUMENTARTRow() As TBDD_DOKUMENTARTRow
+ Get
+ Return CType(Me.GetParentRow(Me.Table.ParentRelations("FK_TBGI_REGEX_DOCTYPE_DTID")),TBDD_DOKUMENTARTRow)
+ End Get
+ Set
+ Me.SetParentRow(value, Me.Table.ParentRelations("FK_TBGI_REGEX_DOCTYPE_DTID"))
+ End Set
+ End Property
+
+ _
+ Public Function IsDOCTYPE_IDNull() As Boolean
+ Return Me.IsNull(Me.tableTBGI_REGEX_DOCTYPE.DOCTYPE_IDColumn)
+ End Function
+
+ _
+ Public Sub SetDOCTYPE_IDNull()
+ Me(Me.tableTBGI_REGEX_DOCTYPE.DOCTYPE_IDColumn) = Global.System.Convert.DBNull
+ End Sub
+
+ _
+ Public Function IsADDED_WHENNull() As Boolean
+ Return Me.IsNull(Me.tableTBGI_REGEX_DOCTYPE.ADDED_WHENColumn)
+ End Function
+
+ _
+ Public Sub SetADDED_WHENNull()
+ Me(Me.tableTBGI_REGEX_DOCTYPE.ADDED_WHENColumn) = Global.System.Convert.DBNull
+ End Sub
+
+ _
+ Public Function IsCHANGED_WHONull() As Boolean
+ Return Me.IsNull(Me.tableTBGI_REGEX_DOCTYPE.CHANGED_WHOColumn)
+ End Function
+
+ _
+ Public Sub SetCHANGED_WHONull()
+ Me(Me.tableTBGI_REGEX_DOCTYPE.CHANGED_WHOColumn) = Global.System.Convert.DBNull
+ End Sub
+
+ _
+ Public Function IsCHANGED_WHENNull() As Boolean
+ Return Me.IsNull(Me.tableTBGI_REGEX_DOCTYPE.CHANGED_WHENColumn)
+ End Function
+
+ _
+ Public Sub SetCHANGED_WHENNull()
+ Me(Me.tableTBGI_REGEX_DOCTYPE.CHANGED_WHENColumn) = Global.System.Convert.DBNull
+ End Sub
+ End Class
+
'''
'''Represents strongly named DataRow class.
'''
@@ -3465,6 +4033,42 @@ Partial Public Class GlobixDataset
End Property
End Class
+ '''
+ '''Row event argument class
+ '''
+ _
+ Public Class TBGI_REGEX_DOCTYPERowChangeEvent
+ Inherits Global.System.EventArgs
+
+ Private eventRow As TBGI_REGEX_DOCTYPERow
+
+ Private eventAction As Global.System.Data.DataRowAction
+
+ _
+ Public Sub New(ByVal row As TBGI_REGEX_DOCTYPERow, ByVal action As Global.System.Data.DataRowAction)
+ MyBase.New
+ Me.eventRow = row
+ Me.eventAction = action
+ End Sub
+
+ _
+ Public ReadOnly Property Row() As TBGI_REGEX_DOCTYPERow
+ Get
+ Return Me.eventRow
+ End Get
+ End Property
+
+ _
+ Public ReadOnly Property Action() As Global.System.Data.DataRowAction
+ Get
+ Return Me.eventAction
+ End Get
+ End Property
+ End Class
+
'''
'''Row event argument class
'''
@@ -4899,6 +5503,336 @@ Namespace GlobixDatasetTableAdapters
End Function
End Class
+ '''
+ '''Represents the connection and commands used to retrieve and save data.
+ '''
+ _
+ Partial Public Class TBGI_REGEX_DOCTYPETableAdapter
+ Inherits Global.System.ComponentModel.Component
+
+ Private WithEvents _adapter As Global.System.Data.SqlClient.SqlDataAdapter
+
+ Private _connection As Global.System.Data.SqlClient.SqlConnection
+
+ Private _transaction As Global.System.Data.SqlClient.SqlTransaction
+
+ Private _commandCollection() As Global.System.Data.SqlClient.SqlCommand
+
+ Private _clearBeforeFill As Boolean
+
+ _
+ Public Sub New()
+ MyBase.New
+ Me.ClearBeforeFill = true
+ End Sub
+
+ _
+ Protected Friend ReadOnly Property Adapter() As Global.System.Data.SqlClient.SqlDataAdapter
+ Get
+ If (Me._adapter Is Nothing) Then
+ Me.InitAdapter
+ End If
+ Return Me._adapter
+ End Get
+ End Property
+
+ _
+ Friend Property Connection() As Global.System.Data.SqlClient.SqlConnection
+ Get
+ If (Me._connection Is Nothing) Then
+ Me.InitConnection
+ End If
+ Return Me._connection
+ End Get
+ Set
+ Me._connection = value
+ If (Not (Me.Adapter.InsertCommand) Is Nothing) Then
+ Me.Adapter.InsertCommand.Connection = value
+ End If
+ If (Not (Me.Adapter.DeleteCommand) Is Nothing) Then
+ Me.Adapter.DeleteCommand.Connection = value
+ End If
+ If (Not (Me.Adapter.UpdateCommand) Is Nothing) Then
+ Me.Adapter.UpdateCommand.Connection = value
+ End If
+ Dim i As Integer = 0
+ Do While (i < Me.CommandCollection.Length)
+ If (Not (Me.CommandCollection(i)) Is Nothing) Then
+ CType(Me.CommandCollection(i),Global.System.Data.SqlClient.SqlCommand).Connection = value
+ End If
+ i = (i + 1)
+ Loop
+ End Set
+ End Property
+
+ _
+ Friend Property Transaction() As Global.System.Data.SqlClient.SqlTransaction
+ Get
+ Return Me._transaction
+ End Get
+ Set
+ Me._transaction = value
+ Dim i As Integer = 0
+ Do While (i < Me.CommandCollection.Length)
+ Me.CommandCollection(i).Transaction = Me._transaction
+ i = (i + 1)
+ Loop
+ If ((Not (Me.Adapter) Is Nothing) _
+ AndAlso (Not (Me.Adapter.DeleteCommand) Is Nothing)) Then
+ Me.Adapter.DeleteCommand.Transaction = Me._transaction
+ End If
+ If ((Not (Me.Adapter) Is Nothing) _
+ AndAlso (Not (Me.Adapter.InsertCommand) Is Nothing)) Then
+ Me.Adapter.InsertCommand.Transaction = Me._transaction
+ End If
+ If ((Not (Me.Adapter) Is Nothing) _
+ AndAlso (Not (Me.Adapter.UpdateCommand) Is Nothing)) Then
+ Me.Adapter.UpdateCommand.Transaction = Me._transaction
+ End If
+ End Set
+ End Property
+
+ _
+ Protected ReadOnly Property CommandCollection() As Global.System.Data.SqlClient.SqlCommand()
+ Get
+ If (Me._commandCollection Is Nothing) Then
+ Me.InitCommandCollection
+ End If
+ Return Me._commandCollection
+ End Get
+ End Property
+
+ _
+ Public Property ClearBeforeFill() As Boolean
+ Get
+ Return Me._clearBeforeFill
+ End Get
+ Set
+ Me._clearBeforeFill = value
+ End Set
+ End Property
+
+ _
+ Private Sub InitAdapter()
+ Me._adapter = New Global.System.Data.SqlClient.SqlDataAdapter()
+ Dim tableMapping As Global.System.Data.Common.DataTableMapping = New Global.System.Data.Common.DataTableMapping()
+ tableMapping.SourceTable = "Table"
+ tableMapping.DataSetTable = "TBGI_REGEX_DOCTYPE"
+ tableMapping.ColumnMappings.Add("GUID", "GUID")
+ tableMapping.ColumnMappings.Add("REGEX", "REGEX")
+ tableMapping.ColumnMappings.Add("DOCTYPE_ID", "DOCTYPE_ID")
+ tableMapping.ColumnMappings.Add("ADDED_WHO", "ADDED_WHO")
+ tableMapping.ColumnMappings.Add("ADDED_WHEN", "ADDED_WHEN")
+ tableMapping.ColumnMappings.Add("CHANGED_WHO", "CHANGED_WHO")
+ tableMapping.ColumnMappings.Add("CHANGED_WHEN", "CHANGED_WHEN")
+ Me._adapter.TableMappings.Add(tableMapping)
+ Me._adapter.DeleteCommand = New Global.System.Data.SqlClient.SqlCommand()
+ Me._adapter.DeleteCommand.Connection = Me.Connection
+ Me._adapter.DeleteCommand.CommandText = "DELETE FROM TBGI_REGEX_DOCTYPE"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE (GUID = @Original_GUID)"
+ Me._adapter.DeleteCommand.CommandType = Global.System.Data.CommandType.Text
+ Me._adapter.DeleteCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@Original_GUID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Original, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand = New Global.System.Data.SqlClient.SqlCommand()
+ Me._adapter.InsertCommand.Connection = Me.Connection
+ Me._adapter.InsertCommand.CommandText = "INSERT INTO TBGI_REGEX_DOCTYPE"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" (REGEX, DOCTYPE_ID, ADDE"& _
+ "D_WHO)"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"VALUES (@REGEX,@DOCTYPE_ID,@ADDED_WHO); "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SELECT GUID, REGEX, DOC"& _
+ "TYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBGI_REGEX_DOCTYP"& _
+ "E WHERE (GUID = SCOPE_IDENTITY())"
+ Me._adapter.InsertCommand.CommandType = Global.System.Data.CommandType.Text
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@REGEX", Global.System.Data.SqlDbType.VarChar, 500, Global.System.Data.ParameterDirection.Input, 0, 0, "REGEX", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@DOCTYPE_ID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "DOCTYPE_ID", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@ADDED_WHO", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "ADDED_WHO", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand = New Global.System.Data.SqlClient.SqlCommand()
+ Me._adapter.UpdateCommand.Connection = Me.Connection
+ Me._adapter.UpdateCommand.CommandText = "UPDATE TBGI_REGEX_DOCTYPE"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SET REGEX = @REGEX, DOCTYPE_ID = "& _
+ "@DOCTYPE_ID, CHANGED_WHO = @CHANGED_WHO"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE (GUID = @Original_GUID); "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHE"& _
+ "N FROM TBGI_REGEX_DOCTYPE WHERE (GUID = @GUID)"
+ Me._adapter.UpdateCommand.CommandType = Global.System.Data.CommandType.Text
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@REGEX", Global.System.Data.SqlDbType.VarChar, 500, Global.System.Data.ParameterDirection.Input, 0, 0, "REGEX", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@DOCTYPE_ID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "DOCTYPE_ID", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@CHANGED_WHO", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "CHANGED_WHO", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@Original_GUID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Original, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@GUID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Original, false, Nothing, "", "", ""))
+ End Sub
+
+ _
+ Private Sub InitConnection()
+ Me._connection = New Global.System.Data.SqlClient.SqlConnection()
+ Me._connection.ConnectionString = Global.DigitalData.GUIs.ZooFlow.Settings.Default.DD_ECMConnectionString
+ End Sub
+
+ _
+ Private Sub InitCommandCollection()
+ Me._commandCollection = New Global.System.Data.SqlClient.SqlCommand(0) {}
+ Me._commandCollection(0) = New Global.System.Data.SqlClient.SqlCommand()
+ Me._commandCollection(0).Connection = Me.Connection
+ Me._commandCollection(0).CommandText = "SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGE"& _
+ "D_WHEN"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"FROM TBGI_REGEX_DOCTYPE"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE (GUID = @DOCTYPEID)"
+ Me._commandCollection(0).CommandType = Global.System.Data.CommandType.Text
+ Me._commandCollection(0).Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@DOCTYPEID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ End Sub
+
+ _
+ Public Overloads Overridable Function Fill(ByVal dataTable As GlobixDataset.TBGI_REGEX_DOCTYPEDataTable, ByVal DOCTYPEID As Integer) As Integer
+ Me.Adapter.SelectCommand = Me.CommandCollection(0)
+ Me.Adapter.SelectCommand.Parameters(0).Value = CType(DOCTYPEID,Integer)
+ If (Me.ClearBeforeFill = true) Then
+ dataTable.Clear
+ End If
+ Dim returnValue As Integer = Me.Adapter.Fill(dataTable)
+ Return returnValue
+ End Function
+
+ _
+ Public Overloads Overridable Function GetData(ByVal DOCTYPEID As Integer) As GlobixDataset.TBGI_REGEX_DOCTYPEDataTable
+ Me.Adapter.SelectCommand = Me.CommandCollection(0)
+ Me.Adapter.SelectCommand.Parameters(0).Value = CType(DOCTYPEID,Integer)
+ Dim dataTable As GlobixDataset.TBGI_REGEX_DOCTYPEDataTable = New GlobixDataset.TBGI_REGEX_DOCTYPEDataTable()
+ Me.Adapter.Fill(dataTable)
+ Return dataTable
+ End Function
+
+ _
+ Public Overloads Overridable Function Update(ByVal dataTable As GlobixDataset.TBGI_REGEX_DOCTYPEDataTable) As Integer
+ Return Me.Adapter.Update(dataTable)
+ End Function
+
+ _
+ Public Overloads Overridable Function Update(ByVal dataSet As GlobixDataset) As Integer
+ Return Me.Adapter.Update(dataSet, "TBGI_REGEX_DOCTYPE")
+ End Function
+
+ _
+ Public Overloads Overridable Function Update(ByVal dataRow As Global.System.Data.DataRow) As Integer
+ Return Me.Adapter.Update(New Global.System.Data.DataRow() {dataRow})
+ End Function
+
+ _
+ Public Overloads Overridable Function Update(ByVal dataRows() As Global.System.Data.DataRow) As Integer
+ Return Me.Adapter.Update(dataRows)
+ End Function
+
+ _
+ Public Overloads Overridable Function Delete(ByVal Original_GUID As Integer) As Integer
+ Me.Adapter.DeleteCommand.Parameters(0).Value = CType(Original_GUID,Integer)
+ Dim previousConnectionState As Global.System.Data.ConnectionState = Me.Adapter.DeleteCommand.Connection.State
+ If ((Me.Adapter.DeleteCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
+ <> Global.System.Data.ConnectionState.Open) Then
+ Me.Adapter.DeleteCommand.Connection.Open
+ End If
+ Try
+ Dim returnValue As Integer = Me.Adapter.DeleteCommand.ExecuteNonQuery
+ Return returnValue
+ Finally
+ If (previousConnectionState = Global.System.Data.ConnectionState.Closed) Then
+ Me.Adapter.DeleteCommand.Connection.Close
+ End If
+ End Try
+ End Function
+
+ _
+ Public Overloads Overridable Function Insert(ByVal REGEX As String, ByVal DOCTYPE_ID As Global.System.Nullable(Of Integer), ByVal ADDED_WHO As String) As Integer
+ If (REGEX Is Nothing) Then
+ Throw New Global.System.ArgumentNullException("REGEX")
+ Else
+ Me.Adapter.InsertCommand.Parameters(0).Value = CType(REGEX,String)
+ End If
+ If (DOCTYPE_ID.HasValue = true) Then
+ Me.Adapter.InsertCommand.Parameters(1).Value = CType(DOCTYPE_ID.Value,Integer)
+ Else
+ Me.Adapter.InsertCommand.Parameters(1).Value = Global.System.DBNull.Value
+ End If
+ If (ADDED_WHO Is Nothing) Then
+ Throw New Global.System.ArgumentNullException("ADDED_WHO")
+ Else
+ Me.Adapter.InsertCommand.Parameters(2).Value = CType(ADDED_WHO,String)
+ End If
+ Dim previousConnectionState As Global.System.Data.ConnectionState = Me.Adapter.InsertCommand.Connection.State
+ If ((Me.Adapter.InsertCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
+ <> Global.System.Data.ConnectionState.Open) Then
+ Me.Adapter.InsertCommand.Connection.Open
+ End If
+ Try
+ Dim returnValue As Integer = Me.Adapter.InsertCommand.ExecuteNonQuery
+ Return returnValue
+ Finally
+ If (previousConnectionState = Global.System.Data.ConnectionState.Closed) Then
+ Me.Adapter.InsertCommand.Connection.Close
+ End If
+ End Try
+ End Function
+
+ _
+ Public Overloads Overridable Function Update(ByVal REGEX As String, ByVal DOCTYPE_ID As Global.System.Nullable(Of Integer), ByVal CHANGED_WHO As String, ByVal Original_GUID As Integer, ByVal GUID As Integer) As Integer
+ If (REGEX Is Nothing) Then
+ Throw New Global.System.ArgumentNullException("REGEX")
+ Else
+ Me.Adapter.UpdateCommand.Parameters(0).Value = CType(REGEX,String)
+ End If
+ If (DOCTYPE_ID.HasValue = true) Then
+ Me.Adapter.UpdateCommand.Parameters(1).Value = CType(DOCTYPE_ID.Value,Integer)
+ Else
+ Me.Adapter.UpdateCommand.Parameters(1).Value = Global.System.DBNull.Value
+ End If
+ If (CHANGED_WHO Is Nothing) Then
+ Me.Adapter.UpdateCommand.Parameters(2).Value = Global.System.DBNull.Value
+ Else
+ Me.Adapter.UpdateCommand.Parameters(2).Value = CType(CHANGED_WHO,String)
+ End If
+ Me.Adapter.UpdateCommand.Parameters(3).Value = CType(Original_GUID,Integer)
+ Me.Adapter.UpdateCommand.Parameters(4).Value = CType(GUID,Integer)
+ Dim previousConnectionState As Global.System.Data.ConnectionState = Me.Adapter.UpdateCommand.Connection.State
+ If ((Me.Adapter.UpdateCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
+ <> Global.System.Data.ConnectionState.Open) Then
+ Me.Adapter.UpdateCommand.Connection.Open
+ End If
+ Try
+ Dim returnValue As Integer = Me.Adapter.UpdateCommand.ExecuteNonQuery
+ Return returnValue
+ Finally
+ If (previousConnectionState = Global.System.Data.ConnectionState.Closed) Then
+ Me.Adapter.UpdateCommand.Connection.Close
+ End If
+ End Try
+ End Function
+ End Class
+
'''
'''TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
'''
@@ -4918,6 +5852,8 @@ Namespace GlobixDatasetTableAdapters
Private _tBDD_INDEX_AUTOMTableAdapter As TBDD_INDEX_AUTOMTableAdapter
+ Private _tBGI_REGEX_DOCTYPETableAdapter As TBGI_REGEX_DOCTYPETableAdapter
+
Private _backupDataSetBeforeUpdate As Boolean
Private _connection As Global.System.Data.IDbConnection
@@ -4975,6 +5911,20 @@ Namespace GlobixDatasetTableAdapters
End Set
End Property
+ _
+ Public Property TBGI_REGEX_DOCTYPETableAdapter() As TBGI_REGEX_DOCTYPETableAdapter
+ Get
+ Return Me._tBGI_REGEX_DOCTYPETableAdapter
+ End Get
+ Set
+ Me._tBGI_REGEX_DOCTYPETableAdapter = value
+ End Set
+ End Property
+
_
Public Property BackupDataSetBeforeUpdate() As Boolean
@@ -5006,6 +5956,10 @@ Namespace GlobixDatasetTableAdapters
AndAlso (Not (Me._tBDD_INDEX_AUTOMTableAdapter.Connection) Is Nothing)) Then
Return Me._tBDD_INDEX_AUTOMTableAdapter.Connection
End If
+ If ((Not (Me._tBGI_REGEX_DOCTYPETableAdapter) Is Nothing) _
+ AndAlso (Not (Me._tBGI_REGEX_DOCTYPETableAdapter.Connection) Is Nothing)) Then
+ Return Me._tBGI_REGEX_DOCTYPETableAdapter.Connection
+ End If
Return Nothing
End Get
Set
@@ -5028,6 +5982,9 @@ Namespace GlobixDatasetTableAdapters
If (Not (Me._tBDD_INDEX_AUTOMTableAdapter) Is Nothing) Then
count = (count + 1)
End If
+ If (Not (Me._tBGI_REGEX_DOCTYPETableAdapter) Is Nothing) Then
+ count = (count + 1)
+ End If
Return count
End Get
End Property
@@ -5066,6 +6023,15 @@ Namespace GlobixDatasetTableAdapters
allChangedRows.AddRange(updatedRows)
End If
End If
+ If (Not (Me._tBGI_REGEX_DOCTYPETableAdapter) Is Nothing) Then
+ Dim updatedRows() As Global.System.Data.DataRow = dataSet.TBGI_REGEX_DOCTYPE.Select(Nothing, Nothing, Global.System.Data.DataViewRowState.ModifiedCurrent)
+ updatedRows = Me.GetRealUpdatedRows(updatedRows, allAddedRows)
+ If ((Not (updatedRows) Is Nothing) _
+ AndAlso (0 < updatedRows.Length)) Then
+ result = (result + Me._tBGI_REGEX_DOCTYPETableAdapter.Update(updatedRows))
+ allChangedRows.AddRange(updatedRows)
+ End If
+ End If
Return result
End Function
@@ -5100,6 +6066,14 @@ Namespace GlobixDatasetTableAdapters
allAddedRows.AddRange(addedRows)
End If
End If
+ If (Not (Me._tBGI_REGEX_DOCTYPETableAdapter) Is Nothing) Then
+ Dim addedRows() As Global.System.Data.DataRow = dataSet.TBGI_REGEX_DOCTYPE.Select(Nothing, Nothing, Global.System.Data.DataViewRowState.Added)
+ If ((Not (addedRows) Is Nothing) _
+ AndAlso (0 < addedRows.Length)) Then
+ result = (result + Me._tBGI_REGEX_DOCTYPETableAdapter.Update(addedRows))
+ allAddedRows.AddRange(addedRows)
+ End If
+ End If
Return result
End Function
@@ -5110,6 +6084,14 @@ Namespace GlobixDatasetTableAdapters
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")> _
Private Function UpdateDeletedRows(ByVal dataSet As GlobixDataset, ByVal allChangedRows As Global.System.Collections.Generic.List(Of Global.System.Data.DataRow)) As Integer
Dim result As Integer = 0
+ If (Not (Me._tBGI_REGEX_DOCTYPETableAdapter) Is Nothing) Then
+ Dim deletedRows() As Global.System.Data.DataRow = dataSet.TBGI_REGEX_DOCTYPE.Select(Nothing, Nothing, Global.System.Data.DataViewRowState.Deleted)
+ If ((Not (deletedRows) Is Nothing) _
+ AndAlso (0 < deletedRows.Length)) Then
+ result = (result + Me._tBGI_REGEX_DOCTYPETableAdapter.Update(deletedRows))
+ allChangedRows.AddRange(deletedRows)
+ End If
+ End If
If (Not (Me._tBDD_INDEX_AUTOMTableAdapter) Is Nothing) Then
Dim deletedRows() As Global.System.Data.DataRow = dataSet.TBDD_INDEX_AUTOM.Select(Nothing, Nothing, Global.System.Data.DataViewRowState.Deleted)
If ((Not (deletedRows) Is Nothing) _
@@ -5190,6 +6172,11 @@ Namespace GlobixDatasetTableAdapters
Throw New Global.System.ArgumentException("Für alle von einem TableAdapterManager verwalteten Instanzen von TableAdapter mus"& _
"s die gleiche Verbindungszeichenfolge verwendet werden.")
End If
+ If ((Not (Me._tBGI_REGEX_DOCTYPETableAdapter) Is Nothing) _
+ AndAlso (Me.MatchTableAdapterConnection(Me._tBGI_REGEX_DOCTYPETableAdapter.Connection) = false)) Then
+ Throw New Global.System.ArgumentException("Für alle von einem TableAdapterManager verwalteten Instanzen von TableAdapter mus"& _
+ "s die gleiche Verbindungszeichenfolge verwendet werden.")
+ End If
Dim workConnection As Global.System.Data.IDbConnection = Me.Connection
If (workConnection Is Nothing) Then
Throw New Global.System.ApplicationException("TableAdapterManager enthält keine Verbindungsinformationen. Legen Sie jede TableA"& _
@@ -5251,6 +6238,15 @@ Namespace GlobixDatasetTableAdapters
adaptersWithAcceptChangesDuringUpdate.Add(Me._tBDD_INDEX_AUTOMTableAdapter.Adapter)
End If
End If
+ If (Not (Me._tBGI_REGEX_DOCTYPETableAdapter) Is Nothing) Then
+ revertConnections.Add(Me._tBGI_REGEX_DOCTYPETableAdapter, Me._tBGI_REGEX_DOCTYPETableAdapter.Connection)
+ Me._tBGI_REGEX_DOCTYPETableAdapter.Connection = CType(workConnection,Global.System.Data.SqlClient.SqlConnection)
+ Me._tBGI_REGEX_DOCTYPETableAdapter.Transaction = CType(workTransaction,Global.System.Data.SqlClient.SqlTransaction)
+ If Me._tBGI_REGEX_DOCTYPETableAdapter.Adapter.AcceptChangesDuringUpdate Then
+ Me._tBGI_REGEX_DOCTYPETableAdapter.Adapter.AcceptChangesDuringUpdate = false
+ adaptersWithAcceptChangesDuringUpdate.Add(Me._tBGI_REGEX_DOCTYPETableAdapter.Adapter)
+ End If
+ End If
'
'---- Perform updates -----------
'
@@ -5323,6 +6319,10 @@ Namespace GlobixDatasetTableAdapters
Me._tBDD_INDEX_AUTOMTableAdapter.Connection = CType(revertConnections(Me._tBDD_INDEX_AUTOMTableAdapter),Global.System.Data.SqlClient.SqlConnection)
Me._tBDD_INDEX_AUTOMTableAdapter.Transaction = Nothing
End If
+ If (Not (Me._tBGI_REGEX_DOCTYPETableAdapter) Is Nothing) Then
+ Me._tBGI_REGEX_DOCTYPETableAdapter.Connection = CType(revertConnections(Me._tBGI_REGEX_DOCTYPETableAdapter),Global.System.Data.SqlClient.SqlConnection)
+ Me._tBGI_REGEX_DOCTYPETableAdapter.Transaction = Nothing
+ End If
If (0 < adaptersWithAcceptChangesDuringUpdate.Count) Then
Dim adapters((adaptersWithAcceptChangesDuringUpdate.Count) - 1) As Global.System.Data.Common.DataAdapter
adaptersWithAcceptChangesDuringUpdate.CopyTo(adapters)
diff --git a/GUIs.ZooFlow/Globix/GlobixDataset.xsc b/GUIs.ZooFlow/Globix/GlobixDataset.xsc
index e6933760..3e057f38 100644
--- a/GUIs.ZooFlow/Globix/GlobixDataset.xsc
+++ b/GUIs.ZooFlow/Globix/GlobixDataset.xsc
@@ -43,71 +43,53 @@
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
diff --git a/GUIs.ZooFlow/Globix/GlobixDataset.xsd b/GUIs.ZooFlow/Globix/GlobixDataset.xsd
index 4033b8b1..7c455ed0 100644
--- a/GUIs.ZooFlow/Globix/GlobixDataset.xsd
+++ b/GUIs.ZooFlow/Globix/GlobixDataset.xsd
@@ -323,6 +323,69 @@ SELECT GUID, DOCTYPE_ID, ENTITY_ID, INDEXNAME, VALUE, CONNECTION_ID, SQL_RESULT,
+
+
+
+
+
+ DELETE FROM TBGI_REGEX_DOCTYPE
+WHERE (GUID = @Original_GUID)
+
+
+
+
+
+
+
+ INSERT INTO TBGI_REGEX_DOCTYPE
+ (REGEX, DOCTYPE_ID, ADDED_WHO)
+VALUES (@REGEX,@DOCTYPE_ID,@ADDED_WHO);
+SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBGI_REGEX_DOCTYPE WHERE (GUID = SCOPE_IDENTITY())
+
+
+
+
+
+
+
+
+
+ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
+FROM TBGI_REGEX_DOCTYPE
+WHERE (GUID = @DOCTYPEID)
+
+
+
+
+
+
+
+ UPDATE TBGI_REGEX_DOCTYPE
+SET REGEX = @REGEX, DOCTYPE_ID = @DOCTYPE_ID, CHANGED_WHO = @CHANGED_WHO
+WHERE (GUID = @Original_GUID);
+SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBGI_REGEX_DOCTYPE WHERE (GUID = @GUID)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -570,6 +633,37 @@ SELECT GUID, DOCTYPE_ID, ENTITY_ID, INDEXNAME, VALUE, CONNECTION_ID, SQL_RESULT,
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -584,11 +678,16 @@ SELECT GUID, DOCTYPE_ID, ENTITY_ID, INDEXNAME, VALUE, CONNECTION_ID, SQL_RESULT,
+
+
+
+
+
\ No newline at end of file
diff --git a/GUIs.ZooFlow/ZooFlow.vbproj b/GUIs.ZooFlow/ZooFlow.vbproj
index 93aa7660..3c7c6cbc 100644
--- a/GUIs.ZooFlow/ZooFlow.vbproj
+++ b/GUIs.ZooFlow/ZooFlow.vbproj
@@ -146,6 +146,7 @@
+
frmAdmin_ClipboardWatcher.vb