diff --git a/Global_Indexer/ClassDatatables.vb b/Global_Indexer/ClassDatatables.vb
index c8790ff..c2d2be1 100644
--- a/Global_Indexer/ClassDatatables.vb
+++ b/Global_Indexer/ClassDatatables.vb
@@ -1,5 +1,6 @@
Public Class ClassDatatables
+#Region "TBDD_GROUP"
Public Shared Function AddGroupToProfile(GroupId As Integer, ProfileId As Integer) As Boolean
Try
Dim oSQL = $"
@@ -27,14 +28,13 @@
Public Shared Function GetAssignedGroups(ProfileId As Integer) As DataTable
Try
Dim oSQL As String = $"
- SELECT * FROM TBDD_GROUPS
- WHERE (GUID IN
- (
- SELECT GROUP_ID
- FROM TBDD_USRGRP_DOKTYPE
- WHERE DOCTYPE_ID = {ProfileId}
- )
- )
+ SELECT GUID, NAME FROM TBDD_GROUPS
+ WHERE GUID IN
+ (
+ SELECT GROUP_ID
+ FROM TBDD_USRGRP_DOKTYPE
+ WHERE DOCTYPE_ID = {ProfileId}
+ )
"
Dim oDatatable As DataTable = ClassDatabase.Return_Datatable(oSQL)
@@ -48,13 +48,58 @@
Public Shared Function GetAvailableGroups(ProfileId As Integer) As DataTable
Try
Dim oSQL As String = $"
- SELECT * FROM TBDD_GROUPS
- WHERE NOT (GUID IN
- (
- SELECT GROUP_ID
- FROM TBDD_USRGRP_DOKTYPE
+ 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 = ClassDatabase.Return_Datatable(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 ClassDatabase.Execute_non_Query(oSQL, True)
+ 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 ClassDatabase.Execute_non_Query(oSQL, True)
+ 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 = ClassDatabase.Return_Datatable(oSQL)
@@ -65,4 +110,30 @@
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 = ClassDatabase.Return_Datatable(oSQL)
+
+ Return oDatatable
+ Catch ex As Exception
+ LOGGER.Error(ex)
+ Return Nothing
+ End Try
+ End Function
+#End Region
+
+
+
+
+
End Class
diff --git a/Global_Indexer/frmAdministration.Designer.vb b/Global_Indexer/frmAdministration.Designer.vb
index b8fc917..02daa69 100644
--- a/Global_Indexer/frmAdministration.Designer.vb
+++ b/Global_Indexer/frmAdministration.Designer.vb
@@ -132,6 +132,8 @@ Partial Class frmAdministration
Me.RibbonPageGroupProfileRegex = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
Me.RibbonStatusBar1 = New DevExpress.XtraBars.Ribbon.RibbonStatusBar()
Me.Label12 = New System.Windows.Forms.Label()
+ Me.XtraTabControl3 = New DevExpress.XtraTab.XtraTabControl()
+ Me.XtraTabPage1 = New DevExpress.XtraTab.XtraTabPage()
Me.SplitContainerControl2 = New DevExpress.XtraEditors.SplitContainerControl()
Me.gridAssignedGroups = New DevExpress.XtraGrid.GridControl()
Me.viewAssignedGroups = New DevExpress.XtraGrid.Views.Grid.GridView()
@@ -143,6 +145,22 @@ Partial Class frmAdministration
Me.colGUID2 = New DevExpress.XtraGrid.Columns.GridColumn()
Me.GridColumn2 = New DevExpress.XtraGrid.Columns.GridColumn()
Me.Label14 = New System.Windows.Forms.Label()
+ Me.XtraTabPage2 = New DevExpress.XtraTab.XtraTabPage()
+ Me.SplitContainerControl5 = 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.SplitContainerControl3 = New DevExpress.XtraEditors.SplitContainerControl()
Me.GridControl1 = New DevExpress.XtraGrid.GridControl()
Me.GridView1 = New DevExpress.XtraGrid.Views.Grid.GridView()
@@ -176,7 +194,7 @@ Partial Class frmAdministration
Me.NAMETextBox = New System.Windows.Forms.TextBox()
Me.GUIDTextBox1 = New System.Windows.Forms.TextBox()
Me.XtraTabPageManualIndexFunctions = New DevExpress.XtraTab.XtraTabPage()
- Me.ListBoxControl2 = New DevExpress.XtraEditors.ListBoxControl()
+ Me.ListBox1 = New System.Windows.Forms.ListBox()
Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.VARIANTComboBox = New System.Windows.Forms.ComboBox()
Me.ComboBox2 = New System.Windows.Forms.ComboBox()
@@ -265,7 +283,6 @@ Partial Class frmAdministration
Me.Label1 = New System.Windows.Forms.Label()
Me.lblObjekttyp = New System.Windows.Forms.Label()
Me.ERSTELLTWERTextBox = New System.Windows.Forms.TextBox()
- Me.TBDD_EINGANGSARTENBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.AKTIVCheckBox = New System.Windows.Forms.CheckBox()
Me.btnNamenkonvention = New System.Windows.Forms.Button()
Me.BESCHREIBUNGTextBox = New System.Windows.Forms.TextBox()
@@ -291,6 +308,7 @@ Partial Class frmAdministration
Me.IDX_EMAIL_IDComboBox = New System.Windows.Forms.ComboBox()
Me.IDX_EMAIL_TOComboBox = New System.Windows.Forms.ComboBox()
Me.IDX_EMAIL_FROMComboBox = New System.Windows.Forms.ComboBox()
+ Me.TBDD_EINGANGSARTENBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.TBDD_USERBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.XtraTabControl1 = New DevExpress.XtraTab.XtraTabControl()
Me.XtraTabPageProfiles = New DevExpress.XtraTab.XtraTabPage()
@@ -382,12 +400,22 @@ Partial Class frmAdministration
CType(Me.MyDataset, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.GridView3, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.RibbonControl1, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.XtraTabControl3, System.ComponentModel.ISupportInitialize).BeginInit()
+ Me.XtraTabControl3.SuspendLayout()
+ Me.XtraTabPage1.SuspendLayout()
CType(Me.SplitContainerControl2, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SplitContainerControl2.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()
+ Me.XtraTabPage2.SuspendLayout()
+ CType(Me.SplitContainerControl5, System.ComponentModel.ISupportInitialize).BeginInit()
+ Me.SplitContainerControl5.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()
CType(Me.SplitContainerControl3, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SplitContainerControl3.SuspendLayout()
CType(Me.GridControl1, System.ComponentModel.ISupportInitialize).BeginInit()
@@ -398,7 +426,6 @@ Partial Class frmAdministration
CType(Me.ListBoxControl3, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TBDD_INDEX_MANBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
Me.XtraTabPageManualIndexFunctions.SuspendLayout()
- CType(Me.ListBoxControl2, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TBWHDD_INDEX_MANBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
Me.XtraTabPageAutoIndex.SuspendLayout()
@@ -410,12 +437,12 @@ Partial Class frmAdministration
Me.XtraTabPageProfileRegex.SuspendLayout()
CType(Me.TBGI_REGEX_DOCTYPEBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.SEQUENCENumericUpDown, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.TBDD_EINGANGSARTENBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.SplitContainerControl4, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SplitContainerControl4.SuspendLayout()
CType(Me.ListBoxControl1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.pnlObjekttype_Config.SuspendLayout()
CType(Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
+ CType(Me.TBDD_EINGANGSARTENBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TBDD_USERBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.XtraTabControl1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.XtraTabControl1.SuspendLayout()
@@ -441,7 +468,7 @@ Partial Class frmAdministration
Me.SplitContainerControl1.Panel1.Controls.Add(Me.GridControl3)
Me.SplitContainerControl1.Panel1.Controls.Add(Me.Label12)
resources.ApplyResources(Me.SplitContainerControl1.Panel1, "SplitContainerControl1.Panel1")
- Me.SplitContainerControl1.Panel2.Controls.Add(Me.SplitContainerControl2)
+ Me.SplitContainerControl1.Panel2.Controls.Add(Me.XtraTabControl3)
resources.ApplyResources(Me.SplitContainerControl1.Panel2, "SplitContainerControl1.Panel2")
Me.SplitContainerControl1.SplitterPosition = 250
'
@@ -470,6 +497,8 @@ Partial Class frmAdministration
Me.GridView3.Appearance.EvenRow.Options.UseBackColor = True
Me.GridView3.Appearance.FocusedRow.BackColor = System.Drawing.Color.Khaki
Me.GridView3.Appearance.FocusedRow.Options.UseBackColor = True
+ Me.GridView3.Appearance.SelectedRow.BackColor = System.Drawing.Color.Khaki
+ Me.GridView3.Appearance.SelectedRow.Options.UseBackColor = True
Me.GridView3.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colBEZEICHNUNG1})
Me.GridView3.GridControl = Me.GridControl3
Me.GridView3.Name = "GridView3"
@@ -831,6 +860,19 @@ Partial Class frmAdministration
resources.ApplyResources(Me.Label12, "Label12")
Me.Label12.Name = "Label12"
'
+ 'XtraTabControl3
+ '
+ resources.ApplyResources(Me.XtraTabControl3, "XtraTabControl3")
+ Me.XtraTabControl3.Name = "XtraTabControl3"
+ Me.XtraTabControl3.SelectedTabPage = Me.XtraTabPage1
+ Me.XtraTabControl3.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.XtraTabPage1, Me.XtraTabPage2})
+ '
+ 'XtraTabPage1
+ '
+ Me.XtraTabPage1.Controls.Add(Me.SplitContainerControl2)
+ Me.XtraTabPage1.Name = "XtraTabPage1"
+ resources.ApplyResources(Me.XtraTabPage1, "XtraTabPage1")
+ '
'SplitContainerControl2
'
resources.ApplyResources(Me.SplitContainerControl2, "SplitContainerControl2")
@@ -842,7 +884,7 @@ Partial Class frmAdministration
Me.SplitContainerControl2.Panel2.Controls.Add(Me.gridAvailableGroups)
Me.SplitContainerControl2.Panel2.Controls.Add(Me.Label14)
resources.ApplyResources(Me.SplitContainerControl2.Panel2, "SplitContainerControl2.Panel2")
- Me.SplitContainerControl2.SplitterPosition = 254
+ Me.SplitContainerControl2.SplitterPosition = 275
'
'gridAssignedGroups
'
@@ -946,6 +988,139 @@ Partial Class frmAdministration
resources.ApplyResources(Me.Label14, "Label14")
Me.Label14.Name = "Label14"
'
+ 'XtraTabPage2
+ '
+ Me.XtraTabPage2.Controls.Add(Me.SplitContainerControl5)
+ Me.XtraTabPage2.Name = "XtraTabPage2"
+ resources.ApplyResources(Me.XtraTabPage2, "XtraTabPage2")
+ '
+ 'SplitContainerControl5
+ '
+ resources.ApplyResources(Me.SplitContainerControl5, "SplitContainerControl5")
+ Me.SplitContainerControl5.Horizontal = False
+ Me.SplitContainerControl5.Name = "SplitContainerControl5"
+ Me.SplitContainerControl5.Panel1.Controls.Add(Me.gridAssignedUsers)
+ Me.SplitContainerControl5.Panel1.Controls.Add(Me.Label2)
+ resources.ApplyResources(Me.SplitContainerControl5.Panel1, "SplitContainerControl5.Panel1")
+ Me.SplitContainerControl5.Panel2.Controls.Add(Me.gridAvailableUsers)
+ Me.SplitContainerControl5.Panel2.Controls.Add(Me.Label35)
+ resources.ApplyResources(Me.SplitContainerControl5.Panel2, "SplitContainerControl5.Panel2")
+ Me.SplitContainerControl5.SplitterPosition = 244
+ '
+ 'gridAssignedUsers
+ '
+ Me.gridAssignedUsers.AllowDrop = True
+ resources.ApplyResources(Me.gridAssignedUsers, "gridAssignedUsers")
+ Me.gridAssignedUsers.MainView = Me.viewAssignedUsers
+ Me.gridAssignedUsers.MenuManager = Me.RibbonControl1
+ Me.gridAssignedUsers.Name = "gridAssignedUsers"
+ 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
+ '
+ resources.ApplyResources(Me.GridColumn1, "GridColumn1")
+ Me.GridColumn1.FieldName = "GUID"
+ Me.GridColumn1.Name = "GridColumn1"
+ '
+ 'GridColumn3
+ '
+ resources.ApplyResources(Me.GridColumn3, "GridColumn3")
+ Me.GridColumn3.FieldName = "USERNAME"
+ Me.GridColumn3.Name = "GridColumn3"
+ '
+ 'GridColumn5
+ '
+ resources.ApplyResources(Me.GridColumn5, "GridColumn5")
+ Me.GridColumn5.FieldName = "NAME"
+ Me.GridColumn5.Name = "GridColumn5"
+ '
+ 'GridColumn4
+ '
+ resources.ApplyResources(Me.GridColumn4, "GridColumn4")
+ Me.GridColumn4.FieldName = "EMAIL"
+ Me.GridColumn4.Name = "GridColumn4"
+ '
+ 'Label2
+ '
+ resources.ApplyResources(Me.Label2, "Label2")
+ Me.Label2.Name = "Label2"
+ '
+ 'gridAvailableUsers
+ '
+ Me.gridAvailableUsers.AllowDrop = True
+ resources.ApplyResources(Me.gridAvailableUsers, "gridAvailableUsers")
+ Me.gridAvailableUsers.MainView = Me.viewAvailableUsers
+ Me.gridAvailableUsers.MenuManager = Me.RibbonControl1
+ Me.gridAvailableUsers.Name = "gridAvailableUsers"
+ 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
+ '
+ resources.ApplyResources(Me.GridColumn6, "GridColumn6")
+ Me.GridColumn6.FieldName = "GUID"
+ Me.GridColumn6.Name = "GridColumn6"
+ '
+ 'GridColumn7
+ '
+ resources.ApplyResources(Me.GridColumn7, "GridColumn7")
+ Me.GridColumn7.FieldName = "USERNAME"
+ Me.GridColumn7.Name = "GridColumn7"
+ '
+ 'GridColumn9
+ '
+ resources.ApplyResources(Me.GridColumn9, "GridColumn9")
+ Me.GridColumn9.FieldName = "NAME"
+ Me.GridColumn9.Name = "GridColumn9"
+ '
+ 'GridColumn8
+ '
+ resources.ApplyResources(Me.GridColumn8, "GridColumn8")
+ Me.GridColumn8.FieldName = "EMAIL"
+ Me.GridColumn8.Name = "GridColumn8"
+ '
+ 'Label35
+ '
+ resources.ApplyResources(Me.Label35, "Label35")
+ Me.Label35.Name = "Label35"
+ '
'SplitContainerControl3
'
resources.ApplyResources(Me.SplitContainerControl3, "SplitContainerControl3")
@@ -1299,7 +1474,7 @@ Partial Class frmAdministration
'XtraTabPageManualIndexFunctions
'
resources.ApplyResources(Me.XtraTabPageManualIndexFunctions, "XtraTabPageManualIndexFunctions")
- Me.XtraTabPageManualIndexFunctions.Controls.Add(Me.ListBoxControl2)
+ Me.XtraTabPageManualIndexFunctions.Controls.Add(Me.ListBox1)
Me.XtraTabPageManualIndexFunctions.Controls.Add(VARIANTLabel)
Me.XtraTabPageManualIndexFunctions.Controls.Add(Me.VARIANTComboBox)
Me.XtraTabPageManualIndexFunctions.Controls.Add(Me.ComboBox2)
@@ -1332,14 +1507,14 @@ Partial Class frmAdministration
Me.XtraTabPageManualIndexFunctions.Controls.Add(Me.GUIDTextBox4)
Me.XtraTabPageManualIndexFunctions.Name = "XtraTabPageManualIndexFunctions"
'
- 'ListBoxControl2
+ 'ListBox1
'
- Me.ListBoxControl2.AppearanceSelected.BackColor = System.Drawing.Color.Khaki
- Me.ListBoxControl2.AppearanceSelected.Options.UseBackColor = True
- Me.ListBoxControl2.DataSource = Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource
- Me.ListBoxControl2.DisplayMember = "COMMENT"
- resources.ApplyResources(Me.ListBoxControl2, "ListBoxControl2")
- Me.ListBoxControl2.Name = "ListBoxControl2"
+ Me.ListBox1.DataSource = Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource
+ Me.ListBox1.DisplayMember = "COMMENT"
+ resources.ApplyResources(Me.ListBox1, "ListBox1")
+ Me.ListBox1.FormattingEnabled = True
+ Me.ListBox1.Name = "ListBox1"
+ Me.ListBox1.ValueMember = "COMMENT"
'
'TBDD_INDEX_MAN_POSTPROCESSINGBindingSource
'
@@ -2044,11 +2219,6 @@ Partial Class frmAdministration
Me.ERSTELLTWERTextBox.Name = "ERSTELLTWERTextBox"
Me.ERSTELLTWERTextBox.ReadOnly = True
'
- 'TBDD_EINGANGSARTENBindingSource
- '
- Me.TBDD_EINGANGSARTENBindingSource.DataMember = "TBDD_EINGANGSARTEN"
- Me.TBDD_EINGANGSARTENBindingSource.DataSource = Me.MyDataset
- '
'AKTIVCheckBox
'
Me.AKTIVCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_DOKUMENTARTBindingSource, "AKTIV", True))
@@ -2356,6 +2526,11 @@ Partial Class frmAdministration
resources.ApplyResources(Label9, "Label9")
Label9.Name = "Label9"
'
+ 'TBDD_EINGANGSARTENBindingSource
+ '
+ Me.TBDD_EINGANGSARTENBindingSource.DataMember = "TBDD_EINGANGSARTEN"
+ Me.TBDD_EINGANGSARTENBindingSource.DataSource = Me.MyDataset
+ '
'TBDD_USERBindingSource
'
Me.TBDD_USERBindingSource.DataMember = "TBDD_USER"
@@ -2527,12 +2702,22 @@ Partial Class frmAdministration
CType(Me.MyDataset, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.GridView3, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.RibbonControl1, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.XtraTabControl3, System.ComponentModel.ISupportInitialize).EndInit()
+ Me.XtraTabControl3.ResumeLayout(False)
+ Me.XtraTabPage1.ResumeLayout(False)
CType(Me.SplitContainerControl2, System.ComponentModel.ISupportInitialize).EndInit()
Me.SplitContainerControl2.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()
+ Me.XtraTabPage2.ResumeLayout(False)
+ CType(Me.SplitContainerControl5, System.ComponentModel.ISupportInitialize).EndInit()
+ Me.SplitContainerControl5.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()
CType(Me.SplitContainerControl3, System.ComponentModel.ISupportInitialize).EndInit()
Me.SplitContainerControl3.ResumeLayout(False)
CType(Me.GridControl1, System.ComponentModel.ISupportInitialize).EndInit()
@@ -2545,7 +2730,6 @@ Partial Class frmAdministration
CType(Me.TBDD_INDEX_MANBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
Me.XtraTabPageManualIndexFunctions.ResumeLayout(False)
Me.XtraTabPageManualIndexFunctions.PerformLayout()
- CType(Me.ListBoxControl2, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TBWHDD_INDEX_MANBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
Me.XtraTabPageAutoIndex.ResumeLayout(False)
@@ -2561,13 +2745,13 @@ Partial Class frmAdministration
Me.XtraTabPageProfileRegex.PerformLayout()
CType(Me.TBGI_REGEX_DOCTYPEBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.SEQUENCENumericUpDown, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.TBDD_EINGANGSARTENBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.SplitContainerControl4, System.ComponentModel.ISupportInitialize).EndInit()
Me.SplitContainerControl4.ResumeLayout(False)
CType(Me.ListBoxControl1, System.ComponentModel.ISupportInitialize).EndInit()
Me.pnlObjekttype_Config.ResumeLayout(False)
Me.pnlObjekttype_Config.PerformLayout()
CType(Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
+ CType(Me.TBDD_EINGANGSARTENBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TBDD_USERBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.XtraTabControl1, System.ComponentModel.ISupportInitialize).EndInit()
Me.XtraTabControl1.ResumeLayout(False)
@@ -2811,7 +2995,6 @@ Partial Class frmAdministration
Friend WithEvents BarButtonItem23 As DevExpress.XtraBars.BarButtonItem
Friend WithEvents RibbonPageGroupManualIndexFunctions As DevExpress.XtraBars.Ribbon.RibbonPageGroup
Friend WithEvents ListBoxControl3 As DevExpress.XtraEditors.ListBoxControl
- Friend WithEvents ListBoxControl2 As DevExpress.XtraEditors.ListBoxControl
Friend WithEvents BarButtonItem24 As DevExpress.XtraBars.BarButtonItem
Friend WithEvents BarButtonItem25 As DevExpress.XtraBars.BarButtonItem
Friend WithEvents BarButtonItem26 As DevExpress.XtraBars.BarButtonItem
@@ -2819,4 +3002,23 @@ Partial Class frmAdministration
Friend WithEvents RibbonPageGroupAutoIndex As DevExpress.XtraBars.Ribbon.RibbonPageGroup
Friend WithEvents Label32 As Label
Friend WithEvents ListBoxControl4 As DevExpress.XtraEditors.ListBoxControl
+ Friend WithEvents ListBox1 As ListBox
+ Friend WithEvents XtraTabControl3 As DevExpress.XtraTab.XtraTabControl
+ Friend WithEvents XtraTabPage1 As DevExpress.XtraTab.XtraTabPage
+ Friend WithEvents XtraTabPage2 As DevExpress.XtraTab.XtraTabPage
+ Friend WithEvents SplitContainerControl5 As DevExpress.XtraEditors.SplitContainerControl
+ Friend WithEvents gridAssignedUsers As DevExpress.XtraGrid.GridControl
+ Friend WithEvents viewAssignedUsers As DevExpress.XtraGrid.Views.Grid.GridView
+ Friend WithEvents Label2 As Label
+ Friend WithEvents gridAvailableUsers As DevExpress.XtraGrid.GridControl
+ Friend WithEvents viewAvailableUsers As DevExpress.XtraGrid.Views.Grid.GridView
+ Friend WithEvents Label35 As Label
+ 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 GridColumn6 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents GridColumn7 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents GridColumn8 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents GridColumn9 As DevExpress.XtraGrid.Columns.GridColumn
+ Friend WithEvents GridColumn4 As DevExpress.XtraGrid.Columns.GridColumn
End Class
diff --git a/Global_Indexer/frmAdministration.resx b/Global_Indexer/frmAdministration.resx
index 733324f..193630d 100644
--- a/Global_Indexer/frmAdministration.resx
+++ b/Global_Indexer/frmAdministration.resx
@@ -801,12 +801,42 @@
0, 0
+
+ Gruppenzuordnung
+
+
+ Profilzuordnung
+
Profil-Einstellungen
+
+ E-Mail Indexierung
+
+
+ E-Mail Indexierung
+
Weitere Einstellungen
+
+ Grundeinstellungen
+
+
+ Profilverwaltung
+
+
+ Manuelle Indexe
+
+
+ Nachbearbeitungsfunktionen
+
+
+ Automatische Indexe
+
+
+ Automatische Profilauswahl
+
Start
@@ -844,7 +874,7 @@
2
- 250, 525
+ 250, 559
89
@@ -897,6 +927,12 @@
Panel1
+
+ Fill
+
+
+ 0, 0
+
Fill
@@ -939,7 +975,7 @@
1
- 100
+ 170
GUID
@@ -951,7 +987,7 @@
0
- 1111, 224
+ 1112, 245
87
@@ -975,7 +1011,7 @@
0, 0
- 1111, 30
+ 1112, 30
88
@@ -1047,10 +1083,10 @@
1
- 100
+ 170
- 1111, 261
+ 1112, 249
88
@@ -1074,7 +1110,7 @@
0, 0
- 1111, 30
+ 1112, 30
0
@@ -1101,7 +1137,7 @@
Panel2
- 1111, 555
+ 1112, 564
88
@@ -1113,16 +1149,301 @@
DevExpress.XtraEditors.SplitContainerControl, DevExpress.Utils.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
- SplitContainerControl1.Panel2
+ XtraTabPage1
0
+
+ 1112, 564
+
+
+ Gruppenzuordnung
+
+
+ XtraTabPage1
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl3
+
+
+ 0
+
+
+ 1114, 589
+
+
+ 89
+
+
+ Fill
+
+
+ 0, 0
+
+
+ Fill
+
+
+ 0, 30
+
+
+ GUID
+
+
+ True
+
+
+ 0
+
+
+ USERNAME
+
+
+ True
+
+
+ 1
+
+
+ 120
+
+
+ NAME
+
+
+ True
+
+
+ 2
+
+
+ 150
+
+
+ EMAIL
+
+
+ True
+
+
+ 3
+
+
+ 150
+
+
+ 1112, 214
+
+
+ 1
+
+
+ gridAssignedUsers
+
+
+ DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ SplitContainerControl5.Panel1
+
+
+ 0
+
+
+ Top
+
+
+ 0, 0
+
+
+ 1112, 30
+
+
+ 0
+
+
+ Zugeordnete Benutzer
+
+
+ MiddleLeft
+
+
+ Label2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl5.Panel1
+
+
+ 1
+
+
+ Panel1
+
+
+ Fill
+
+
+ 0, 30
+
+
+ GUID
+
+
+ True
+
+
+ 0
+
+
+ USERNAME
+
+
+ True
+
+
+ 1
+
+
+ 120
+
+
+ NAME
+
+
+ True
+
+
+ 2
+
+
+ 150
+
+
+ EMAIL
+
+
+ True
+
+
+ 3
+
+
+ 150
+
+
+ 1112, 280
+
+
+ 1
+
+
+ gridAvailableUsers
+
+
+ DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ SplitContainerControl5.Panel2
+
+
+ 0
+
+
+ Top
+
+
+ NoControl
+
+
+ 0, 0
+
+
+ 1112, 30
+
+
+ 0
+
+
+ Verfügbare Benutzer
+
+
+ MiddleLeft
+
+
+ Label35
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl5.Panel2
+
+
+ 1
+
+
+ Panel2
+
+
+ 1112, 564
+
+
+ 0
+
+
+ SplitContainerControl5
+
+
+ DevExpress.XtraEditors.SplitContainerControl, DevExpress.Utils.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabPage2
+
+
+ 0
+
+
+ 1112, 564
+
+
+ Benutzerzuordnung
+
+
+ XtraTabPage2
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl3
+
+
+ 1
+
+
+ XtraTabControl3
+
+
+ DevExpress.XtraTab.XtraTabControl, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ SplitContainerControl1.Panel2
+
+
+ 0
+
Panel2
- 1371, 555
+ 1374, 589
88
@@ -1139,39 +1460,6 @@
0
-
- 134, 17
-
-
- Profilzuordnung
-
-
- Gruppenzuordnung
-
-
- E-Mail Indexierung
-
-
- E-Mail Indexierung
-
-
- Grundeinstellungen
-
-
- Profilverwaltung
-
-
- Manuelle Indexe
-
-
- Nachbearbeitungsfunktionen
-
-
- Automatische Indexe
-
-
- Automatische Profilauswahl
-
Fill
@@ -2268,28 +2556,28 @@ der Datei
511, 173
-
+
Left
-
+
0, 0
-
- 150, 245
+
+ 150, 281
-
- 82
+
+ 97
-
- ListBoxControl2
+
+ ListBox1
-
- DevExpress.XtraEditors.ListBoxControl, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
XtraTabPageManualIndexFunctions
-
+
0
@@ -3121,7 +3409,7 @@ der Datei
30
- 1109, 245
+ 1112, 281
Nachbearbeitungsfunktionen manueller Index
@@ -3138,27 +3426,6 @@ der Datei
1
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
Vertical
@@ -3168,6 +3435,22 @@ der Datei
True
+
+ Top
+
+
+ 150, 0
+
+
+ 962, 26
+
+
+ 83
+
+
+ Automatische Indizes werden nach den manuellen Indizes OHNE USERINTERAKTION durchlaufen.
+Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei genutzt werden.
+
Label6
@@ -3180,6 +3463,18 @@ der Datei
0
+
+ Left
+
+
+ 0, 0
+
+
+ 150, 281
+
+
+ 90
+
ListBoxControl4
@@ -3192,6 +3487,15 @@ der Datei
1
+
+ 678, 87
+
+
+ 31, 22
+
+
+ 89
+
btnAddWindowsVariable
@@ -3204,6 +3508,21 @@ der Datei
2
+
+ True
+
+
+ 712, 69
+
+
+ 108, 13
+
+
+ 88
+
+
+ Windows-Parameter:
+
lblWindowParameter
@@ -3216,6 +3535,42 @@ der Datei
3
+
+ False
+
+
+ Dateiname (mit Endung)
+
+
+ Dateiname (ohne Endung)
+
+
+ Dateiendung
+
+
+ Datei Erstelldatum
+
+
+ Datei Erstellt wer
+
+
+ Aktuelles Datum (DD.MM.YYYY)
+
+
+ Username
+
+
+ Usercode
+
+
+ 715, 87
+
+
+ 188, 82
+
+
+ 87
+
lbFileparameter
@@ -3228,6 +3583,21 @@ der Datei
4
+
+ True
+
+
+ 460, 73
+
+
+ 166, 13
+
+
+ 85
+
+
+ Fester oder Automatischer Wert:
+
lblValue
@@ -3240,6 +3610,21 @@ der Datei
5
+
+ 17, 173
+
+
+ False
+
+
+ 259, 89
+
+
+ 198, 21
+
+
+ 84
+
INDEXNAME_AutoIndexCMB
@@ -3252,6 +3637,30 @@ der Datei
6
+
+ False
+
+
+ MiddleLeft
+
+
+ 374, 166
+
+
+ 148, 24
+
+
+ 81
+
+
+ Show SQL-Config
+
+
+ MiddleRight
+
+
+ False
+
btnSQLViewAuto
@@ -3264,6 +3673,21 @@ der Datei
7
+
+ False
+
+
+ 164, 166
+
+
+ 198, 24
+
+
+ 29
+
+
+ Automatischer Index per SQL?
+
SQL_ACTIVECheckBox
@@ -3276,6 +3700,27 @@ der Datei
8
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 161, 69
+
+
+ 22, 15
+
+
+ 4
+
+
+ ID:
+
GUIDLabel4
@@ -3288,6 +3733,18 @@ der Datei
9
+
+ Tahoma, 8.25pt
+
+
+ 163, 87
+
+
+ 90, 21
+
+
+ 5
+
GUIDAUTO_INDEXTextbox
@@ -3300,6 +3757,24 @@ der Datei
10
+
+ False
+
+
+ True
+
+
+ 256, 73
+
+
+ 65, 13
+
+
+ 8
+
+
+ Indexname:
+
INDEXNAMELabel
@@ -3312,6 +3787,18 @@ der Datei
11
+
+ False
+
+
+ 463, 89
+
+
+ 209, 21
+
+
+ 11
+
VALUETextBox
@@ -3324,6 +3811,24 @@ der Datei
12
+
+ False
+
+
+ True
+
+
+ 160, 119
+
+
+ 75, 13
+
+
+ 14
+
+
+ Beschreibung:
+
COMMENTLabel1
@@ -3336,6 +3841,18 @@ der Datei
13
+
+ False
+
+
+ 163, 137
+
+
+ 419, 21
+
+
+ 15
+
COMMENTTextBox1
@@ -3348,6 +3865,18 @@ der Datei
14
+
+ 161, 43
+
+
+ 59, 21
+
+
+ 17
+
+
+ Aktiv
+
ACTIVECheckBox1
@@ -3360,6 +3889,27 @@ der Datei
15
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 920, 27
+
+
+ 67, 15
+
+
+ 18
+
+
+ Erstellt wer:
+
ADDED_WHOLabel3
@@ -3372,6 +3922,18 @@ der Datei
16
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 923, 43
+
+
+ 155, 23
+
+
+ 19
+
ADDED_WHOTextBox3
@@ -3384,6 +3946,27 @@ der Datei
17
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 921, 69
+
+
+ 78, 15
+
+
+ 20
+
+
+ Erstellt wann:
+
ADDED_WHENLabel3
@@ -3396,6 +3979,18 @@ der Datei
18
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 923, 85
+
+
+ 155, 23
+
+
+ 21
+
ADDED_WHENTextBox3
@@ -3408,6 +4003,27 @@ der Datei
19
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 921, 111
+
+
+ 81, 15
+
+
+ 22
+
+
+ Geändert wer:
+
CHANGED_WHOLabel3
@@ -3420,6 +4036,18 @@ der Datei
20
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 923, 127
+
+
+ 155, 23
+
+
+ 23
+
CHANGED_WHOTextBox3
@@ -3432,6 +4060,27 @@ der Datei
21
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 921, 153
+
+
+ 92, 15
+
+
+ 24
+
+
+ Geändert wann:
+
CHANGED_WHENLabel3
@@ -3444,6 +4093,18 @@ der Datei
22
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 924, 169
+
+
+ 155, 23
+
+
+ 25
+
CHANGED_WHENTextBox3
@@ -3456,6 +4117,18 @@ der Datei
23
+
+ False
+
+
+ 259, 89
+
+
+ 198, 21
+
+
+ 28
+
INDEXNAME_AutoIndexTXT
@@ -3469,7 +4142,7 @@ der Datei
24
- 1109, 277
+ 1112, 281
automatische/feste Indexe
@@ -3486,6 +4159,387 @@ der Datei
2
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ NoControl
+
+
+ 10, 82
+
+
+ 367, 13
+
+
+ 12
+
+
+ Bei Auswahl von Vektorindexen wird jeweils nur der ERSTE Eintrag verwendet
+
+
+ Label10
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 0
+
+
+ Segoe UI, 9.75pt
+
+
+ 12, 40
+
+
+ 697, 25
+
+
+ 11
+
+
+ FOLDER_FOR_INDEXTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 1
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 9, 66
+
+
+ 346, 13
+
+
+ 10
+
+
+ Inhalte von Datum-Indizes werden automatisch YYYYMMDD konvertiert
+
+
+ Label25
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 2
+
+
+ 715, 41
+
+
+ 31, 23
+
+
+ 9
+
+
+ btncrFolder_delete
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 3
+
+
+ Segoe UI, 9pt
+
+
+ YYYY/MM/DD
+
+
+ YYYY/MM
+
+
+ YYYY
+
+
+ YYYY-MM
+
+
+ 9, 86
+
+
+ 188, 23
+
+
+ 6
+
+
+ cmbCrFolderDate
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 0
+
+
+ True
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 6, 68
+
+
+ 97, 15
+
+
+ 5
+
+
+ Datum-Struktur:
+
+
+ Label20
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 1
+
+
+ Segoe UI, 9.75pt, style=Bold
+
+
+ MiddleLeft
+
+
+ 208, 39
+
+
+ 188, 28
+
+
+ 4
+
+
+ Ordner anhängen
+
+
+ MiddleRight
+
+
+ btnaddcrFolderParameter
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 2
+
+
+ Segoe UI, 9pt
+
+
+ 208, 86
+
+
+ 188, 23
+
+
+ 3
+
+
+ txtcrFoldermanuell
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 3
+
+
+ True
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 205, 68
+
+
+ 82, 15
+
+
+ 2
+
+
+ oder manuell:
+
+
+ Label19
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 4
+
+
+ True
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 6, 24
+
+
+ 204, 15
+
+
+ 1
+
+
+ aus Index-Wert (auto oder manuell):
+
+
+ Label18
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 5
+
+
+ Segoe UI, 9pt
+
+
+ 9, 42
+
+
+ 188, 23
+
+
+ 0
+
+
+ cmbCrFolderIndex
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 6
+
+
+ 12, 107
+
+
+ 530, 130
+
+
+ 8
+
+
+ Neuer Unterordner:
+
+
+ GroupBox5
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 4
+
+
+ True
+
+
+ 9, 22
+
+
+ 124, 15
+
+
+ 7
+
+
+ Variabler Ordnerpfad
+
+
+ Label17
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 5
+
+
+ Segoe UI, 9pt, style=Bold
+
+
+ 3, 3
+
+
+ 820, 259
+
+
+ 81
+
+
+ Dynamic Folder
+
GroupBox4
@@ -3499,7 +4553,7 @@ der Datei
0
- 1109, 277
+ 1112, 281
Dynamischer Ordnerpfad
@@ -3516,24 +4570,18 @@ der Datei
3
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
+
+ 119, 65
+
+
+ 471, 21
+
+
+ 34
+
+
+ FileNameTest.pdf
+
TextBox1
@@ -3546,6 +4594,24 @@ der Datei
0
+
+ True
+
+
+ NoControl
+
+
+ 6, 70
+
+
+ 86, 13
+
+
+ 33
+
+
+ Dateiname Test:
+
Label27
@@ -3558,6 +4624,27 @@ der Datei
1
+
+ False
+
+
+ True
+
+
+ NoControl
+
+
+ 6, 15
+
+
+ 22, 13
+
+
+ 19
+
+
+ ID:
+
Label28
@@ -3570,6 +4657,21 @@ der Datei
2
+
+ NoControl
+
+
+ 596, 65
+
+
+ 92, 23
+
+
+ 32
+
+
+ Test RegEx
+
Button2
@@ -3582,6 +4684,18 @@ der Datei
3
+
+ 17, 290
+
+
+ 359, 119
+
+
+ 121, 21
+
+
+ 31
+
TextBox2
@@ -3594,6 +4708,27 @@ der Datei
4
+
+ False
+
+
+ True
+
+
+ NoControl
+
+
+ 246, 122
+
+
+ 85, 13
+
+
+ 30
+
+
+ Geändert wann:
+
Label29
@@ -3606,6 +4741,15 @@ der Datei
5
+
+ 119, 12
+
+
+ 65, 21
+
+
+ 20
+
TextBox3
@@ -3618,6 +4762,15 @@ der Datei
6
+
+ 359, 92
+
+
+ 121, 21
+
+
+ 29
+
TextBox4
@@ -3630,6 +4783,27 @@ der Datei
7
+
+ False
+
+
+ True
+
+
+ NoControl
+
+
+ 6, 45
+
+
+ 103, 13
+
+
+ 21
+
+
+ Regular Expression:
+
Label30
@@ -3642,6 +4816,27 @@ der Datei
8
+
+ False
+
+
+ True
+
+
+ NoControl
+
+
+ 246, 95
+
+
+ 77, 13
+
+
+ 28
+
+
+ Geändert wer:
+
Label31
@@ -3654,6 +4849,18 @@ der Datei
9
+
+ Consolas, 8.25pt
+
+
+ 119, 39
+
+
+ 569, 20
+
+
+ 22
+
TextBox5
@@ -3666,6 +4873,15 @@ der Datei
10
+
+ 119, 119
+
+
+ 121, 21
+
+
+ 27
+
TextBox6
@@ -3678,6 +4894,27 @@ der Datei
11
+
+ False
+
+
+ True
+
+
+ NoControl
+
+
+ 6, 122
+
+
+ 69, 13
+
+
+ 26
+
+
+ Ersellt wann:
+
Label33
@@ -3690,6 +4927,27 @@ der Datei
12
+
+ False
+
+
+ True
+
+
+ NoControl
+
+
+ 6, 95
+
+
+ 65, 13
+
+
+ 24
+
+
+ Erstellt wer:
+
Label34
@@ -3702,6 +4960,15 @@ der Datei
13
+
+ 119, 92
+
+
+ 121, 21
+
+
+ 25
+
TextBox7
@@ -3715,7 +4982,7 @@ der Datei
14
- 1109, 277
+ 1112, 281
Automatische Profilauswahl
@@ -4536,1684 +5803,6 @@ der Datei
0
-
- 1187, 173
-
-
- Top
-
-
- 150, 0
-
-
- 959, 26
-
-
- 83
-
-
- Automatische Indizes werden nach den manuellen Indizes OHNE USERINTERAKTION durchlaufen.
-Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei genutzt werden.
-
-
- Label6
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 0
-
-
- Left
-
-
- 0, 0
-
-
- 150, 277
-
-
- 90
-
-
- ListBoxControl4
-
-
- DevExpress.XtraEditors.ListBoxControl, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- XtraTabPageAutoIndex
-
-
- 1
-
-
- 678, 87
-
-
- 31, 22
-
-
- 89
-
-
- btnAddWindowsVariable
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 2
-
-
- True
-
-
- 712, 69
-
-
- 108, 13
-
-
- 88
-
-
- Windows-Parameter:
-
-
- lblWindowParameter
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 3
-
-
- False
-
-
- Dateiname (mit Endung)
-
-
- Dateiname (ohne Endung)
-
-
- Dateiendung
-
-
- Datei Erstelldatum
-
-
- Datei Erstellt wer
-
-
- Aktuelles Datum (DD.MM.YYYY)
-
-
- Username
-
-
- Usercode
-
-
- 715, 87
-
-
- 188, 82
-
-
- 87
-
-
- lbFileparameter
-
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 4
-
-
- True
-
-
- 460, 73
-
-
- 166, 13
-
-
- 85
-
-
- Fester oder Automatischer Wert:
-
-
- lblValue
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 5
-
-
- 17, 173
-
-
- False
-
-
- 259, 89
-
-
- 198, 21
-
-
- 84
-
-
- INDEXNAME_AutoIndexCMB
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 6
-
-
- 17, 173
-
-
- False
-
-
- MiddleLeft
-
-
- 374, 166
-
-
- 148, 24
-
-
- 81
-
-
- Show SQL-Config
-
-
- MiddleRight
-
-
- False
-
-
- btnSQLViewAuto
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 7
-
-
- False
-
-
- 164, 166
-
-
- 198, 24
-
-
- 29
-
-
- Automatischer Index per SQL?
-
-
- SQL_ACTIVECheckBox
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 8
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 161, 69
-
-
- 22, 15
-
-
- 4
-
-
- ID:
-
-
- GUIDLabel4
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 9
-
-
- Tahoma, 8.25pt
-
-
- 163, 87
-
-
- 90, 21
-
-
- 5
-
-
- GUIDAUTO_INDEXTextbox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 10
-
-
- False
-
-
- True
-
-
- 256, 73
-
-
- 65, 13
-
-
- 8
-
-
- Indexname:
-
-
- INDEXNAMELabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 11
-
-
- False
-
-
- 463, 89
-
-
- 209, 21
-
-
- 11
-
-
- VALUETextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 12
-
-
- False
-
-
- True
-
-
- 160, 119
-
-
- 75, 13
-
-
- 14
-
-
- Beschreibung:
-
-
- COMMENTLabel1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 13
-
-
- False
-
-
- 163, 137
-
-
- 419, 21
-
-
- 15
-
-
- COMMENTTextBox1
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 14
-
-
- 161, 43
-
-
- 59, 21
-
-
- 17
-
-
- Aktiv
-
-
- ACTIVECheckBox1
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 15
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 920, 27
-
-
- 67, 15
-
-
- 18
-
-
- Erstellt wer:
-
-
- ADDED_WHOLabel3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 16
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 923, 43
-
-
- 155, 23
-
-
- 19
-
-
- ADDED_WHOTextBox3
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 17
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 921, 69
-
-
- 78, 15
-
-
- 20
-
-
- Erstellt wann:
-
-
- ADDED_WHENLabel3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 18
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 923, 85
-
-
- 155, 23
-
-
- 21
-
-
- ADDED_WHENTextBox3
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 19
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 921, 111
-
-
- 81, 15
-
-
- 22
-
-
- Geändert wer:
-
-
- CHANGED_WHOLabel3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 20
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 923, 127
-
-
- 155, 23
-
-
- 23
-
-
- CHANGED_WHOTextBox3
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 21
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 921, 153
-
-
- 92, 15
-
-
- 24
-
-
- Geändert wann:
-
-
- CHANGED_WHENLabel3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 22
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 924, 169
-
-
- 155, 23
-
-
- 25
-
-
- CHANGED_WHENTextBox3
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 23
-
-
- False
-
-
- 259, 89
-
-
- 198, 21
-
-
- 28
-
-
- INDEXNAME_AutoIndexTXT
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageAutoIndex
-
-
- 24
-
-
- Label10
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox4
-
-
- 0
-
-
- FOLDER_FOR_INDEXTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox4
-
-
- 1
-
-
- Label25
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox4
-
-
- 2
-
-
- btncrFolder_delete
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox4
-
-
- 3
-
-
- GroupBox5
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox4
-
-
- 4
-
-
- Label17
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox4
-
-
- 5
-
-
- Segoe UI, 9pt, style=Bold
-
-
- 3, 3
-
-
- 820, 259
-
-
- 81
-
-
- Dynamic Folder
-
-
- GroupBox4
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageFolderPath
-
-
- 0
-
-
- True
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- NoControl
-
-
- 10, 82
-
-
- 367, 13
-
-
- 12
-
-
- Bei Auswahl von Vektorindexen wird jeweils nur der ERSTE Eintrag verwendet
-
-
- Label10
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox4
-
-
- 0
-
-
- Segoe UI, 9.75pt
-
-
- 12, 40
-
-
- 697, 25
-
-
- 11
-
-
- FOLDER_FOR_INDEXTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox4
-
-
- 1
-
-
- True
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- 9, 66
-
-
- 346, 13
-
-
- 10
-
-
- Inhalte von Datum-Indizes werden automatisch YYYYMMDD konvertiert
-
-
- Label25
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox4
-
-
- 2
-
-
- 715, 41
-
-
- 31, 23
-
-
- 9
-
-
- btncrFolder_delete
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox4
-
-
- 3
-
-
- cmbCrFolderDate
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 0
-
-
- Label20
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 1
-
-
- btnaddcrFolderParameter
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 2
-
-
- txtcrFoldermanuell
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 3
-
-
- Label19
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 4
-
-
- Label18
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 5
-
-
- cmbCrFolderIndex
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 6
-
-
- 12, 107
-
-
- 530, 130
-
-
- 8
-
-
- Neuer Unterordner:
-
-
- GroupBox5
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox4
-
-
- 4
-
-
- Segoe UI, 9pt
-
-
- YYYY/MM/DD
-
-
- YYYY/MM
-
-
- YYYY
-
-
- YYYY-MM
-
-
- 9, 86
-
-
- 188, 23
-
-
- 6
-
-
- cmbCrFolderDate
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 0
-
-
- True
-
-
- Segoe UI Semibold, 9pt, style=Bold, Italic
-
-
- 6, 68
-
-
- 97, 15
-
-
- 5
-
-
- Datum-Struktur:
-
-
- Label20
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 1
-
-
- Segoe UI, 9.75pt, style=Bold
-
-
- MiddleLeft
-
-
- 208, 39
-
-
- 188, 28
-
-
- 4
-
-
- Ordner anhängen
-
-
- MiddleRight
-
-
- btnaddcrFolderParameter
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 2
-
-
- Segoe UI, 9pt
-
-
- 208, 86
-
-
- 188, 23
-
-
- 3
-
-
- txtcrFoldermanuell
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 3
-
-
- True
-
-
- Segoe UI Semibold, 9pt, style=Bold, Italic
-
-
- 205, 68
-
-
- 82, 15
-
-
- 2
-
-
- oder manuell:
-
-
- Label19
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 4
-
-
- True
-
-
- Segoe UI Semibold, 9pt, style=Bold, Italic
-
-
- 6, 24
-
-
- 204, 15
-
-
- 1
-
-
- aus Index-Wert (auto oder manuell):
-
-
- Label18
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 5
-
-
- Segoe UI, 9pt
-
-
- 9, 42
-
-
- 188, 23
-
-
- 0
-
-
- cmbCrFolderIndex
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox5
-
-
- 6
-
-
- True
-
-
- 9, 22
-
-
- 124, 15
-
-
- 7
-
-
- Variabler Ordnerpfad
-
-
- Label17
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GroupBox4
-
-
- 5
-
-
- 119, 65
-
-
- 471, 21
-
-
- 34
-
-
- FileNameTest.pdf
-
-
- TextBox1
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 0
-
-
- True
-
-
- NoControl
-
-
- 6, 70
-
-
- 86, 13
-
-
- 33
-
-
- Dateiname Test:
-
-
- Label27
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 1
-
-
- False
-
-
- True
-
-
- NoControl
-
-
- 6, 15
-
-
- 22, 13
-
-
- 19
-
-
- ID:
-
-
- Label28
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 2
-
-
- NoControl
-
-
- 596, 65
-
-
- 92, 23
-
-
- 32
-
-
- Test RegEx
-
-
- Button2
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 3
-
-
- 17, 290
-
-
- 359, 119
-
-
- 121, 21
-
-
- 31
-
-
- TextBox2
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 4
-
-
- 17, 290
-
-
- False
-
-
- True
-
-
- NoControl
-
-
- 246, 122
-
-
- 85, 13
-
-
- 30
-
-
- Geändert wann:
-
-
- Label29
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 5
-
-
- 119, 12
-
-
- 65, 21
-
-
- 20
-
-
- TextBox3
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 6
-
-
- 359, 92
-
-
- 121, 21
-
-
- 29
-
-
- TextBox4
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 7
-
-
- False
-
-
- True
-
-
- NoControl
-
-
- 6, 45
-
-
- 103, 13
-
-
- 21
-
-
- Regular Expression:
-
-
- Label30
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 8
-
-
- False
-
-
- True
-
-
- NoControl
-
-
- 246, 95
-
-
- 77, 13
-
-
- 28
-
-
- Geändert wer:
-
-
- Label31
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 9
-
-
- Consolas, 8.25pt
-
-
- 119, 39
-
-
- 569, 20
-
-
- 22
-
-
- TextBox5
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 10
-
-
- 119, 119
-
-
- 121, 21
-
-
- 27
-
-
- TextBox6
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 11
-
-
- False
-
-
- True
-
-
- NoControl
-
-
- 6, 122
-
-
- 69, 13
-
-
- 26
-
-
- Ersellt wann:
-
-
- Label33
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 12
-
-
- False
-
-
- True
-
-
- NoControl
-
-
- 6, 95
-
-
- 65, 13
-
-
- 24
-
-
- Erstellt wer:
-
-
- Label34
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 13
-
-
- 119, 92
-
-
- 121, 21
-
-
- 25
-
-
- TextBox7
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 14
-
-
- 1192, 17
-
Fill
@@ -6227,7 +5816,7 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
0, 30
- 182, 525
+ 182, 559
85
@@ -6283,375 +5872,6 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
False
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- GUIDLabel3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 0
-
-
- IDX_CHECK_ATTACHMENTComboBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 1
-
-
- CHANGED_WHENTextBox2
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 2
-
-
- IDX_CHECK_ATTACHMENTLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 3
-
-
- CHANGED_WHENLabel2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 4
-
-
- CHANGED_WHOTextBox2
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 5
-
-
- CHANGED_WHOLabel2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 6
-
-
- ADDED_WHENTextBox2
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 7
-
-
- ADDED_WHENLabel2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 8
-
-
- ADDED_WHOTextBox2
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 9
-
-
- ADDED_WHOLabel2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 10
-
-
- GUIDTextBox3
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 11
-
-
- IDX_EMAIL_DATE_INComboBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 12
-
-
- OBJECTTYPELabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 13
-
-
- IDX_EMAIL_DATE_INLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 14
-
-
- OBJECTTYPETextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 15
-
-
- IDX_EMAIL_SUBJECTComboBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 16
-
-
- IDX_EMAIL_IDLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 17
-
-
- IDX_EMAIL_SUBJECTLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 18
-
-
- IDX_EMAIL_IDComboBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 19
-
-
- IDX_EMAIL_TOComboBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 20
-
-
- IDX_EMAIL_FROMLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 21
-
-
- IDX_EMAIL_TOLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 22
-
-
- IDX_EMAIL_FROMComboBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlObjekttype_Config
-
-
- 23
-
-
- Fill
-
-
- 0, 0
-
-
- 1179, 555
-
-
- 82
-
-
- pnlObjekttype_Config
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl4.Panel2
-
-
- 0
-
-
- Panel2
-
-
- 1371, 555
-
-
- 84
-
-
- SplitContainerControl4
-
-
- DevExpress.XtraEditors.SplitContainerControl, DevExpress.Utils.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- XtraTabPageEmail
-
-
- 0
-
-
- False
-
True
@@ -6709,9 +5929,6 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
1
-
- 17, 134
-
Segoe UI, 9.75pt, style=Italic
@@ -7339,6 +6556,51 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
23
+
+ Fill
+
+
+ 0, 0
+
+
+ 1182, 589
+
+
+ 82
+
+
+ pnlObjekttype_Config
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl4.Panel2
+
+
+ 0
+
+
+ Panel2
+
+
+ 1374, 589
+
+
+ 84
+
+
+ SplitContainerControl4
+
+
+ DevExpress.XtraEditors.SplitContainerControl, DevExpress.Utils.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabPageEmail
+
+
+ 0
+
False
@@ -7714,6 +6976,9 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
1
+
+ 1192, 17
+
635, 95
@@ -7763,7 +7028,7 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
3, 4, 3, 4
- 1371, 555
+ 1374, 589
Profil-Zuordnung
@@ -7781,7 +7046,7 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
1
- 1371, 555
+ 1374, 589
E-Mail Indexierung
@@ -8270,6 +7535,66 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+ viewAssignedUsers
+
+
+ DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn1
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn3
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn5
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn4
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ viewAvailableUsers
+
+
+ DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn6
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn7
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn9
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn8
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
GridView1
@@ -8312,18 +7637,18 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- TBDD_EINGANGSARTENBindingSource
-
-
- System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource
System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ TBDD_EINGANGSARTENBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
TBDD_USERBindingSource
diff --git a/Global_Indexer/frmAdministration.vb b/Global_Indexer/frmAdministration.vb
index 4e919d0..309cf3a 100644
--- a/Global_Indexer/frmAdministration.vb
+++ b/Global_Indexer/frmAdministration.vb
@@ -44,6 +44,8 @@ Public Class frmAdministration
Dim oDragDropManager As New ClassDragDrop()
oDragDropManager.AddGridView(viewAssignedGroups)
oDragDropManager.AddGridView(viewAvailableGroups)
+ oDragDropManager.AddGridView(viewAssignedUsers)
+ oDragDropManager.AddGridView(viewAvailableUsers)
RibbonPageCategoryUserGroups.Visible = False
RibbonPageCategoryMisc.Visible = False
@@ -221,6 +223,8 @@ Public Class frmAdministration
gridAssignedGroups.DataSource = ClassDatatables.GetAssignedGroups(CURRENT_DOKART_ID)
gridAvailableGroups.DataSource = ClassDatatables.GetAvailableGroups(CURRENT_DOKART_ID)
+ gridAssignedUsers.DataSource = ClassDatatables.GetAssignedUsers(CURRENT_DOKART_ID)
+ gridAvailableUsers.DataSource = ClassDatatables.GetAvailableUsers(CURRENT_DOKART_ID)
End If
End Sub
@@ -976,7 +980,6 @@ Public Class frmAdministration
Try
Dim data As String = e.Data.GetData(DataFormats.Text)
Dim groupId As Integer = data.Split("|")(0)
-
Dim profileId As Integer = DOKART_GUIDTextBox.Text
ClassDatatables.AddGroupToProfile(groupId, profileId)
@@ -984,7 +987,7 @@ Public Class frmAdministration
gridAvailableGroups.DataSource = ClassDatatables.GetAvailableGroups(profileId)
Catch ex As Exception
LOGGER.Error(ex)
- MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler beim Hinzufügen eines Users:")
+ MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler beim Hinzufügen einer Gruppe:")
End Try
End Sub
@@ -999,7 +1002,7 @@ Public Class frmAdministration
gridAvailableGroups.DataSource = ClassDatatables.GetAvailableGroups(profileId)
Catch ex As Exception
LOGGER.Error(ex)
- MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler beim Hinzufügen eines Users:")
+ MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler beim Hinzufügen einer Gruppe:")
End Try
End Sub
@@ -1249,7 +1252,7 @@ Public Class frmAdministration
If result = MsgBoxResult.Yes Then
If GUIDTextBox1.Text <> "" Then
Try
- Dim del = "DELETE FROM TBDD_INDEX_MAN_POSTPROCESSING WHERE IDXMAN_ID = " & GUIDTextBox1.Text
+ Dim del = "DELETE FROM TBDD_INDEX_MAN_POSTPROCESSING WHERE GUID = " & GUIDTextBox4.Text
If ClassDatabase.Execute_non_Query(del) = True Then
Load_PostProcessing(Me.DOKART_GUIDTextBox.Text)
End If
@@ -1300,4 +1303,34 @@ Public Class frmAdministration
Private Sub BarButtonItem25_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem25.ItemClick
Save_IndexAuto()
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 = DOKART_GUIDTextBox.Text
+
+ ClassDatatables.AddUserToProfile(userId, profileId)
+ gridAssignedUsers.DataSource = ClassDatatables.GetAssignedUsers(profileId)
+ gridAvailableUsers.DataSource = ClassDatatables.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 = DOKART_GUIDTextBox.Text
+
+ ClassDatatables.RemoveUserFromProfile(userId, profileId)
+ gridAssignedUsers.DataSource = ClassDatatables.GetAssignedUsers(profileId)
+ gridAvailableUsers.DataSource = ClassDatatables.GetAvailableUsers(profileId)
+ Catch ex As Exception
+ LOGGER.Error(ex)
+ MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler beim Hinzufügen eines Users:")
+ End Try
+ End Sub
End Class