From 99423b0aea7aadf464a70249fc8a4b6099a82099 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Tue, 19 Jun 2018 17:02:27 +0200 Subject: [PATCH] jj: Baustelle - Finale Indexe --- app/DD_PM_WINDREAM/ClassFinalIndex.vb | 3 + app/DD_PM_WINDREAM/ClassSQLEditor.vb | 7 +- app/DD_PM_WINDREAM/ClassSQLTypeConverter.vb | 11 + app/DD_PM_WINDREAM/ClassSQLValue.vb | 18 + .../DD_DMSLiteDataSet.Designer.vb | 14 +- app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsc | 18 +- app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsd | 55 +- app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xss | 30 +- app/DD_PM_WINDREAM/DD_PM_WINDREAM.vbproj | 4 + app/DD_PM_WINDREAM/ModuleControlProperties.vb | 32 - .../ModuleFinalIndexProperties.vb | 70 + app/DD_PM_WINDREAM/ModuleRuntimeVariables.vb | 2 +- .../frmAdministration.Designer.vb | 219 +- app/DD_PM_WINDREAM/frmAdministration.resx | 2820 +++++++++-------- app/DD_PM_WINDREAM/frmAdministration.vb | 111 + app/DD_PM_WINDREAM/frmFormDesigner.vb | 12 +- app/DD_PM_WINDREAM/frmSQL_DESIGNER.vb | 27 +- 17 files changed, 2012 insertions(+), 1441 deletions(-) create mode 100644 app/DD_PM_WINDREAM/ClassFinalIndex.vb create mode 100644 app/DD_PM_WINDREAM/ClassSQLTypeConverter.vb create mode 100644 app/DD_PM_WINDREAM/ClassSQLValue.vb create mode 100644 app/DD_PM_WINDREAM/ModuleFinalIndexProperties.vb diff --git a/app/DD_PM_WINDREAM/ClassFinalIndex.vb b/app/DD_PM_WINDREAM/ClassFinalIndex.vb new file mode 100644 index 0000000..9beac2d --- /dev/null +++ b/app/DD_PM_WINDREAM/ClassFinalIndex.vb @@ -0,0 +1,3 @@ +Public Class ClassFinalIndex + +End Class diff --git a/app/DD_PM_WINDREAM/ClassSQLEditor.vb b/app/DD_PM_WINDREAM/ClassSQLEditor.vb index c77707e..f9fc38b 100644 --- a/app/DD_PM_WINDREAM/ClassSQLEditor.vb +++ b/app/DD_PM_WINDREAM/ClassSQLEditor.vb @@ -16,11 +16,12 @@ Public Class ClassSQLEditor Dim SQLSTring As String = DirectCast(value, SQLValue).Value If svc IsNot Nothing AndAlso SQLSTring IsNot Nothing Then - CURRENT_DESIGN_TYPE = "INPUT_INDEX" + 'CURRENT_DESIGN_TYPE = "INPUT_INDEX" Using Form As New frmSQL_DESIGNER() - Form.Value = SQLSTring + Form.SQLCommand = SQLSTring If svc.ShowDialog(Form) = DialogResult.OK Then - Dim sql As New SQLValue(Form.Value) + Dim sql As New SQLValue(Form.SQLCommand) + CURRENT_SQL_CON = Form.ConnectionID value = sql End If End Using diff --git a/app/DD_PM_WINDREAM/ClassSQLTypeConverter.vb b/app/DD_PM_WINDREAM/ClassSQLTypeConverter.vb new file mode 100644 index 0000000..8a32960 --- /dev/null +++ b/app/DD_PM_WINDREAM/ClassSQLTypeConverter.vb @@ -0,0 +1,11 @@ +Imports System.ComponentModel + +Public Class SQLTypeConverter + Inherits TypeConverter + + Public Overrides Function ConvertTo(context As ITypeDescriptorContext, culture As Globalization.CultureInfo, value As Object, destinationType As Type) As Object + 'Return MyBase.ConvertTo(context, culture, value, destinationType) + Dim sqlvalue As SQLValue = DirectCast(value, SQLValue) + Return sqlvalue.Value + End Function +End Class \ No newline at end of file diff --git a/app/DD_PM_WINDREAM/ClassSQLValue.vb b/app/DD_PM_WINDREAM/ClassSQLValue.vb new file mode 100644 index 0000000..c11420a --- /dev/null +++ b/app/DD_PM_WINDREAM/ClassSQLValue.vb @@ -0,0 +1,18 @@ +Imports System.ComponentModel +Imports System.Drawing.Design +''' +''' Hilfsklasse, die für das anzeigen und abspeichern von SQL-Befehlen verwendet wird +''' + + +Public Class SQLValue + Public Property Value As String + + Public Sub New() + Me.Value = "" + End Sub + + Public Sub New(value As String) + Me.Value = value + End Sub +End Class \ No newline at end of file diff --git a/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.Designer.vb b/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.Designer.vb index 0bd31d5..57d22ff 100644 --- a/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.Designer.vb +++ b/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.Designer.vb @@ -13191,12 +13191,14 @@ Namespace DD_DMSLiteDataSetTableAdapters Me._commandCollection(5).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, "", "", "")) Me._commandCollection(6) = New Global.System.Data.SqlClient.SqlCommand() Me._commandCollection(6).Connection = Me.Connection - Me._commandCollection(6).CommandText = "SELECT TBPM_PROFILE_FINAL_INDEXING.ADDED_WHEN, TBPM_PROFILE_FINAL_INDEXING.ADDED_"& _ - "WHO, TBPM_PROFILE_FINAL_INDEXING.CHANGED_WHEN, TBPM_PROFILE_FINAL_INDEXING.CHANG"& _ - "ED_WHO, TBPM_PROFILE_FINAL_INDEXING.GUID, TBPM_PROFILE_FINAL_INDEXING.INDEXNAME,"& _ - " TBPM_PROFILE_FINAL_INDEXING.VALUE FROM TBPM_PROFILE_FINAL_INDEXING INNER JOIN T"& _ - "BPM_PROFILE ON TBPM_PROFILE_FINAL_INDEXING.PROFIL_ID = TBPM_PROFILE.GUID WHERE ("& _ - "TBPM_PROFILE.GUID = @ID)" + Me._commandCollection(6).CommandText = "SELECT TBPM_PROFILE_FINAL_INDEXING.ADDED_WHEN, TBPM_PROFILE_FINAL_INDEXING"& _ + ".ADDED_WHO, TBPM_PROFILE_FINAL_INDEXING.CHANGED_WHEN, TBPM_PROFILE_FINAL_INDEXIN"& _ + "G.CHANGED_WHO, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" TBPM_PROFILE_FINAL_INDEXING.GUID, TBPM"& _ + "_PROFILE_FINAL_INDEXING.INDEXNAME, TBPM_PROFILE_FINAL_INDEXING.VALUE, TBPM_PROFI"& _ + "LE_FINAL_INDEXING.SQL_COMMAND, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" TBPM_PROFILE_FINAL_IND"& _ + "EXING.CONNECTION_ID"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"FROM TBPM_PROFILE_FINAL_INDEXING INNER JOIN"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "& _ + " TBPM_PROFILE ON TBPM_PROFILE_FINAL_INDEXING.PROFIL_ID = TB"& _ + "PM_PROFILE.GUID"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE (TBPM_PROFILE.GUID = @ID)" Me._commandCollection(6).CommandType = Global.System.Data.CommandType.Text Me._commandCollection(6).Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@ID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", "")) End Sub diff --git a/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsc b/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsc index af13c20..32c7db1 100644 --- a/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsc +++ b/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsc @@ -37,25 +37,19 @@ - - + - - + - - + - - + - - + - - + diff --git a/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsd b/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsd index 99f39ef..401ec24 100644 --- a/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsd +++ b/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsd @@ -156,12 +156,17 @@ WHERE (GUID = @GUID) - + - SELECT TBPM_PROFILE_FINAL_INDEXING.ADDED_WHEN, TBPM_PROFILE_FINAL_INDEXING.ADDED_WHO, TBPM_PROFILE_FINAL_INDEXING.CHANGED_WHEN, TBPM_PROFILE_FINAL_INDEXING.CHANGED_WHO, TBPM_PROFILE_FINAL_INDEXING.GUID, TBPM_PROFILE_FINAL_INDEXING.INDEXNAME, TBPM_PROFILE_FINAL_INDEXING.VALUE FROM TBPM_PROFILE_FINAL_INDEXING INNER JOIN TBPM_PROFILE ON TBPM_PROFILE_FINAL_INDEXING.PROFIL_ID = TBPM_PROFILE.GUID WHERE (TBPM_PROFILE.GUID = @ID) + SELECT TBPM_PROFILE_FINAL_INDEXING.ADDED_WHEN, TBPM_PROFILE_FINAL_INDEXING.ADDED_WHO, TBPM_PROFILE_FINAL_INDEXING.CHANGED_WHEN, TBPM_PROFILE_FINAL_INDEXING.CHANGED_WHO, + TBPM_PROFILE_FINAL_INDEXING.GUID, TBPM_PROFILE_FINAL_INDEXING.INDEXNAME, TBPM_PROFILE_FINAL_INDEXING.VALUE, TBPM_PROFILE_FINAL_INDEXING.SQL_COMMAND, + TBPM_PROFILE_FINAL_INDEXING.CONNECTION_ID +FROM TBPM_PROFILE_FINAL_INDEXING INNER JOIN + TBPM_PROFILE ON TBPM_PROFILE_FINAL_INDEXING.PROFIL_ID = TBPM_PROFILE.GUID +WHERE (TBPM_PROFILE.GUID = @ID) - + @@ -2019,7 +2024,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2064,7 +2069,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2160,7 +2165,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2225,7 +2230,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2255,7 +2260,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2278,7 +2283,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2368,7 +2373,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2441,7 +2446,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2490,7 +2495,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2505,7 +2510,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2526,7 +2531,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2634,7 +2639,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2707,7 +2712,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2758,7 +2763,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2850,7 +2855,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2907,7 +2912,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -2948,7 +2953,7 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - + @@ -3064,11 +3069,11 @@ VALUES (@PROFIL_ID,@GROUP_ID,@WHO) - - - - - + + + + + \ No newline at end of file diff --git a/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xss b/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xss index 5039a4f..cfb210b 100644 --- a/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xss +++ b/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xss @@ -4,24 +4,24 @@ Changes to this file may cause incorrect behavior and will be lost if the code is regenerated. --> - + - + - - - - - - + + + + + + - - + + - - - - + + + + @@ -77,7 +77,7 @@ - + 141 diff --git a/app/DD_PM_WINDREAM/DD_PM_WINDREAM.vbproj b/app/DD_PM_WINDREAM/DD_PM_WINDREAM.vbproj index ed8eb17..7e79161 100644 --- a/app/DD_PM_WINDREAM/DD_PM_WINDREAM.vbproj +++ b/app/DD_PM_WINDREAM/DD_PM_WINDREAM.vbproj @@ -156,10 +156,13 @@ + + + @@ -287,6 +290,7 @@ Form + diff --git a/app/DD_PM_WINDREAM/ModuleControlProperties.vb b/app/DD_PM_WINDREAM/ModuleControlProperties.vb index b31a5af..eb92ca5 100644 --- a/app/DD_PM_WINDREAM/ModuleControlProperties.vb +++ b/app/DD_PM_WINDREAM/ModuleControlProperties.vb @@ -231,38 +231,6 @@ Public Module ModuleControlProperties End If End Function End Class - - Public Class SQLTypeConverter - Inherits TypeConverter - - Public Overrides Function ConvertTo(context As ITypeDescriptorContext, culture As Globalization.CultureInfo, value As Object, destinationType As Type) As Object - 'Return MyBase.ConvertTo(context, culture, value, destinationType) - Dim sqlvalue As SQLValue = DirectCast(value, SQLValue) - Return sqlvalue.Value - End Function - End Class - - ''' - ''' Hilfsklasse, die für das anzeigen und abspeichern von SQL-Befehlen verwendet wird - ''' - - - Public Class SQLValue - Private _value As String - - Public Sub New(value As String) - Me.Value = value - End Sub - - Public Property Value As String - Get - Return _value - End Get - Set(value As String) - _value = value - End Set - End Property - End Class End Class Public Class TextboxProperties diff --git a/app/DD_PM_WINDREAM/ModuleFinalIndexProperties.vb b/app/DD_PM_WINDREAM/ModuleFinalIndexProperties.vb new file mode 100644 index 0000000..56cbb0e --- /dev/null +++ b/app/DD_PM_WINDREAM/ModuleFinalIndexProperties.vb @@ -0,0 +1,70 @@ +Imports System.ComponentModel +Imports System.Drawing.Design +Imports System.Globalization + +Module ModuleFinalIndexProperties + + Public Class FinalIndexProperties + + <[ReadOnly](True)> + Public Property GUID As Integer + + <[ReadOnly](True)> + Public Property ConnectionId As Integer + + + Public Property Description As String + + Public Property Active As Boolean + + ''' + ''' Eigenschaft, die den SQL Editor anzeigt + ''' + + Public Property SQLCommand As SQLValue + + Public Property StaticValue As String + + ''' + ''' Eigenschaft, die eine Liste von Indicies anzeigt + ''' + + + Public Property IndexName As String + + Public Property VectorIndex As Boolean + + ''' + ''' Diese Eigenschaft enthält die auswählbaren Indicies, die für das Control verfügbar sind. Wird nicht direkt angezeigt. + ''' + + Public Property Indicies As List(Of String) + + + + Public Class IndexListConverter + Inherits TypeConverter + + Public Overrides Function GetStandardValuesSupported(context As ITypeDescriptorContext) As Boolean + Return True + End Function + + Public Overrides Function GetStandardValues(context As ITypeDescriptorContext) As StandardValuesCollection + Dim indexList = DirectCast(context.Instance, FinalIndexProperties).Indicies + Dim values As New StandardValuesCollection(indexList) + Return values + End Function + + Public Overrides Function ConvertTo(context As ITypeDescriptorContext, culture As CultureInfo, value As Object, destinationType As Type) As Object + If IsNothing(value) Then + Return "" + Else + Return value.ToString() + End If + End Function + End Class + + End Class + + +End Module diff --git a/app/DD_PM_WINDREAM/ModuleRuntimeVariables.vb b/app/DD_PM_WINDREAM/ModuleRuntimeVariables.vb index 9875c8a..0f12b18 100644 --- a/app/DD_PM_WINDREAM/ModuleRuntimeVariables.vb +++ b/app/DD_PM_WINDREAM/ModuleRuntimeVariables.vb @@ -34,7 +34,7 @@ Module ModuleRuntimeVariables Public USERCOUNT_LOGGED_IN As Integer = 0 Public CURRENT_INDEX_ID As Integer Public CURRENT_OBJECTTYPE As String - Public CURRENT_DESIGN_TYPE As String + Public CURRENT_DESIGN_TYPE As String = "FINAL_INDEX" Public CURRENT_SQL_CON As Integer Public CURRENT_SQL_COMAMND As String Public CURRENT_DT_SQL_CONFIG_TABLE As DataTable diff --git a/app/DD_PM_WINDREAM/frmAdministration.Designer.vb b/app/DD_PM_WINDREAM/frmAdministration.Designer.vb index f8f8fa3..1b8f19a 100644 --- a/app/DD_PM_WINDREAM/frmAdministration.Designer.vb +++ b/app/DD_PM_WINDREAM/frmAdministration.Designer.vb @@ -49,7 +49,7 @@ Partial Class frmAdministration Dim VEKTOR_DELIMITERLabel As System.Windows.Forms.Label Dim WORK_HISTORY_ENTRYLabel As System.Windows.Forms.Label Dim SQL_VIEWLabel As System.Windows.Forms.Label - Dim DataGridViewCellStyle4 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle() + Dim DataGridViewCellStyle3 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle() Me.SplitContainer_Profilzuordnung2 = New System.Windows.Forms.SplitContainer() Me.gridAssignedUsers = New DevExpress.XtraGrid.GridControl() Me.TBPROFILE_USERBindingSource = New System.Windows.Forms.BindingSource(Me.components) @@ -155,6 +155,29 @@ Partial Class frmAdministration Me.TabPage6 = New System.Windows.Forms.TabPage() Me.TabControl2 = New System.Windows.Forms.TabControl() Me.TabPage11 = New System.Windows.Forms.TabPage() + Me.gridFinalIndex = New DevExpress.XtraGrid.GridControl() + Me.TBPM_PROFILE_FINAL_INDEXINGBindingSource = New System.Windows.Forms.BindingSource(Me.components) + Me.viewFinalIndex = New DevExpress.XtraGrid.Views.Grid.GridView() + Me.colGUID = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colINDEXNAME = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colADDED_WHO = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colADDED_WHEN = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colCHANGED_WHO = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colCHANGED_WHEN = New DevExpress.XtraGrid.Columns.GridColumn() + Me.BindingNavigator1 = New System.Windows.Forms.BindingNavigator(Me.components) + Me.BindingNavigatorAddNewItem = New System.Windows.Forms.ToolStripButton() + Me.BindingNavigatorCountItem1 = New System.Windows.Forms.ToolStripLabel() + Me.BindingNavigatorDeleteItem = New System.Windows.Forms.ToolStripButton() + Me.BindingNavigatorMoveFirstItem1 = New System.Windows.Forms.ToolStripButton() + Me.BindingNavigatorMovePreviousItem1 = New System.Windows.Forms.ToolStripButton() + Me.BindingNavigatorSeparator3 = New System.Windows.Forms.ToolStripSeparator() + Me.BindingNavigatorPositionItem1 = New System.Windows.Forms.ToolStripTextBox() + Me.BindingNavigatorSeparator4 = New System.Windows.Forms.ToolStripSeparator() + Me.BindingNavigatorMoveNextItem1 = New System.Windows.Forms.ToolStripButton() + Me.BindingNavigatorMoveLastItem1 = New System.Windows.Forms.ToolStripButton() + Me.BindingNavigatorSeparator5 = New System.Windows.Forms.ToolStripSeparator() + Me.ToolStripButton4 = New System.Windows.Forms.ToolStripButton() + Me.PropertyGrid1 = New System.Windows.Forms.PropertyGrid() Me.Label13 = New System.Windows.Forms.Label() Me.TabControlFinalIndices = New System.Windows.Forms.TabControl() Me.TabPage9 = New System.Windows.Forms.TabPage() @@ -179,7 +202,6 @@ Partial Class frmAdministration Me.cmbIndexe2 = New System.Windows.Forms.ComboBox() Me.btnSaveSQLCommand = New System.Windows.Forms.Button() Me.SQL_COMMANDTextBox = New System.Windows.Forms.TextBox() - Me.TBPM_PROFILE_FINAL_INDEXINGBindingSource = New System.Windows.Forms.BindingSource(Me.components) Me.btnShowConnections = New System.Windows.Forms.Button() Me.Label14 = New System.Windows.Forms.Label() Me.cmbConnection = New System.Windows.Forms.ComboBox() @@ -349,11 +371,15 @@ Partial Class frmAdministration Me.TabPage6.SuspendLayout() Me.TabControl2.SuspendLayout() Me.TabPage11.SuspendLayout() + CType(Me.gridFinalIndex, System.ComponentModel.ISupportInitialize).BeginInit() + CType(Me.TBPM_PROFILE_FINAL_INDEXINGBindingSource, System.ComponentModel.ISupportInitialize).BeginInit() + CType(Me.viewFinalIndex, System.ComponentModel.ISupportInitialize).BeginInit() + CType(Me.BindingNavigator1, System.ComponentModel.ISupportInitialize).BeginInit() + Me.BindingNavigator1.SuspendLayout() Me.TabControlFinalIndices.SuspendLayout() Me.TabPage9.SuspendLayout() Me.grbxSystemStamps.SuspendLayout() Me.TabPage10.SuspendLayout() - CType(Me.TBPM_PROFILE_FINAL_INDEXINGBindingSource, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.TBDD_CONNECTIONBindingSource, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.TBPM_PROFILE_FINAL_INDEXINGBindingNavigator, System.ComponentModel.ISupportInitialize).BeginInit() Me.TBPM_PROFILE_FINAL_INDEXINGBindingNavigator.SuspendLayout() @@ -1268,6 +1294,9 @@ Partial Class frmAdministration ' 'TabPage11 ' + Me.TabPage11.Controls.Add(Me.gridFinalIndex) + Me.TabPage11.Controls.Add(Me.BindingNavigator1) + Me.TabPage11.Controls.Add(Me.PropertyGrid1) Me.TabPage11.Controls.Add(Me.Label13) Me.TabPage11.Controls.Add(Me.GroupBox3) Me.TabPage11.Controls.Add(Me.TabControlFinalIndices) @@ -1279,6 +1308,152 @@ Partial Class frmAdministration Me.TabPage11.Name = "TabPage11" Me.TabPage11.UseVisualStyleBackColor = True ' + 'gridFinalIndex + ' + Me.gridFinalIndex.DataSource = Me.TBPM_PROFILE_FINAL_INDEXINGBindingSource + resources.ApplyResources(Me.gridFinalIndex, "gridFinalIndex") + Me.gridFinalIndex.MainView = Me.viewFinalIndex + Me.gridFinalIndex.Name = "gridFinalIndex" + Me.gridFinalIndex.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.viewFinalIndex}) + ' + 'TBPM_PROFILE_FINAL_INDEXINGBindingSource + ' + Me.TBPM_PROFILE_FINAL_INDEXINGBindingSource.DataMember = "TBPM_PROFILE_FINAL_INDEXING" + Me.TBPM_PROFILE_FINAL_INDEXINGBindingSource.DataSource = Me.DD_DMSLiteDataSet + ' + 'viewFinalIndex + ' + Me.viewFinalIndex.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colGUID, Me.colINDEXNAME, Me.colADDED_WHO, Me.colADDED_WHEN, Me.colCHANGED_WHO, Me.colCHANGED_WHEN}) + Me.viewFinalIndex.GridControl = Me.gridFinalIndex + Me.viewFinalIndex.Name = "viewFinalIndex" + Me.viewFinalIndex.OptionsBehavior.Editable = False + Me.viewFinalIndex.OptionsBehavior.ReadOnly = True + Me.viewFinalIndex.OptionsView.ShowGroupPanel = False + ' + 'colGUID + ' + Me.colGUID.FieldName = "GUID" + Me.colGUID.Name = "colGUID" + resources.ApplyResources(Me.colGUID, "colGUID") + ' + 'colINDEXNAME + ' + Me.colINDEXNAME.FieldName = "INDEXNAME" + Me.colINDEXNAME.Name = "colINDEXNAME" + resources.ApplyResources(Me.colINDEXNAME, "colINDEXNAME") + ' + 'colADDED_WHO + ' + Me.colADDED_WHO.FieldName = "ADDED_WHO" + Me.colADDED_WHO.Name = "colADDED_WHO" + resources.ApplyResources(Me.colADDED_WHO, "colADDED_WHO") + ' + 'colADDED_WHEN + ' + Me.colADDED_WHEN.FieldName = "ADDED_WHEN" + Me.colADDED_WHEN.Name = "colADDED_WHEN" + resources.ApplyResources(Me.colADDED_WHEN, "colADDED_WHEN") + ' + 'colCHANGED_WHO + ' + Me.colCHANGED_WHO.FieldName = "CHANGED_WHO" + Me.colCHANGED_WHO.Name = "colCHANGED_WHO" + resources.ApplyResources(Me.colCHANGED_WHO, "colCHANGED_WHO") + ' + 'colCHANGED_WHEN + ' + Me.colCHANGED_WHEN.FieldName = "CHANGED_WHEN" + Me.colCHANGED_WHEN.Name = "colCHANGED_WHEN" + resources.ApplyResources(Me.colCHANGED_WHEN, "colCHANGED_WHEN") + ' + 'BindingNavigator1 + ' + Me.BindingNavigator1.AddNewItem = Me.BindingNavigatorAddNewItem + Me.BindingNavigator1.BindingSource = Me.TBPM_PROFILE_FINAL_INDEXINGBindingSource + Me.BindingNavigator1.CountItem = Me.BindingNavigatorCountItem1 + Me.BindingNavigator1.DeleteItem = Me.BindingNavigatorDeleteItem + resources.ApplyResources(Me.BindingNavigator1, "BindingNavigator1") + Me.BindingNavigator1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem1, Me.BindingNavigatorMovePreviousItem1, Me.BindingNavigatorSeparator3, Me.BindingNavigatorPositionItem1, Me.BindingNavigatorCountItem1, Me.BindingNavigatorSeparator4, Me.BindingNavigatorMoveNextItem1, Me.BindingNavigatorMoveLastItem1, Me.BindingNavigatorSeparator5, Me.BindingNavigatorAddNewItem, Me.BindingNavigatorDeleteItem, Me.ToolStripButton4}) + Me.BindingNavigator1.MoveFirstItem = Me.BindingNavigatorMoveFirstItem1 + Me.BindingNavigator1.MoveLastItem = Me.BindingNavigatorMoveLastItem1 + Me.BindingNavigator1.MoveNextItem = Me.BindingNavigatorMoveNextItem1 + Me.BindingNavigator1.MovePreviousItem = Me.BindingNavigatorMovePreviousItem1 + Me.BindingNavigator1.Name = "BindingNavigator1" + Me.BindingNavigator1.PositionItem = Me.BindingNavigatorPositionItem1 + ' + 'BindingNavigatorAddNewItem + ' + Me.BindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image + resources.ApplyResources(Me.BindingNavigatorAddNewItem, "BindingNavigatorAddNewItem") + Me.BindingNavigatorAddNewItem.Name = "BindingNavigatorAddNewItem" + ' + 'BindingNavigatorCountItem1 + ' + Me.BindingNavigatorCountItem1.Name = "BindingNavigatorCountItem1" + resources.ApplyResources(Me.BindingNavigatorCountItem1, "BindingNavigatorCountItem1") + ' + 'BindingNavigatorDeleteItem + ' + Me.BindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image + resources.ApplyResources(Me.BindingNavigatorDeleteItem, "BindingNavigatorDeleteItem") + Me.BindingNavigatorDeleteItem.Name = "BindingNavigatorDeleteItem" + ' + 'BindingNavigatorMoveFirstItem1 + ' + Me.BindingNavigatorMoveFirstItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image + resources.ApplyResources(Me.BindingNavigatorMoveFirstItem1, "BindingNavigatorMoveFirstItem1") + Me.BindingNavigatorMoveFirstItem1.Name = "BindingNavigatorMoveFirstItem1" + ' + 'BindingNavigatorMovePreviousItem1 + ' + Me.BindingNavigatorMovePreviousItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image + resources.ApplyResources(Me.BindingNavigatorMovePreviousItem1, "BindingNavigatorMovePreviousItem1") + Me.BindingNavigatorMovePreviousItem1.Name = "BindingNavigatorMovePreviousItem1" + ' + 'BindingNavigatorSeparator3 + ' + Me.BindingNavigatorSeparator3.Name = "BindingNavigatorSeparator3" + resources.ApplyResources(Me.BindingNavigatorSeparator3, "BindingNavigatorSeparator3") + ' + 'BindingNavigatorPositionItem1 + ' + resources.ApplyResources(Me.BindingNavigatorPositionItem1, "BindingNavigatorPositionItem1") + Me.BindingNavigatorPositionItem1.Name = "BindingNavigatorPositionItem1" + ' + 'BindingNavigatorSeparator4 + ' + Me.BindingNavigatorSeparator4.Name = "BindingNavigatorSeparator4" + resources.ApplyResources(Me.BindingNavigatorSeparator4, "BindingNavigatorSeparator4") + ' + 'BindingNavigatorMoveNextItem1 + ' + Me.BindingNavigatorMoveNextItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image + resources.ApplyResources(Me.BindingNavigatorMoveNextItem1, "BindingNavigatorMoveNextItem1") + Me.BindingNavigatorMoveNextItem1.Name = "BindingNavigatorMoveNextItem1" + ' + 'BindingNavigatorMoveLastItem1 + ' + Me.BindingNavigatorMoveLastItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image + resources.ApplyResources(Me.BindingNavigatorMoveLastItem1, "BindingNavigatorMoveLastItem1") + Me.BindingNavigatorMoveLastItem1.Name = "BindingNavigatorMoveLastItem1" + ' + 'BindingNavigatorSeparator5 + ' + Me.BindingNavigatorSeparator5.Name = "BindingNavigatorSeparator5" + resources.ApplyResources(Me.BindingNavigatorSeparator5, "BindingNavigatorSeparator5") + ' + 'ToolStripButton4 + ' + Me.ToolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image + Me.ToolStripButton4.Image = Global.DD_PM_WINDREAM.My.Resources.Resources.save + resources.ApplyResources(Me.ToolStripButton4, "ToolStripButton4") + Me.ToolStripButton4.Name = "ToolStripButton4" + ' + 'PropertyGrid1 + ' + resources.ApplyResources(Me.PropertyGrid1, "PropertyGrid1") + Me.PropertyGrid1.Name = "PropertyGrid1" + ' 'Label13 ' resources.ApplyResources(Me.Label13, "Label13") @@ -1443,11 +1618,6 @@ Partial Class frmAdministration resources.ApplyResources(Me.SQL_COMMANDTextBox, "SQL_COMMANDTextBox") Me.SQL_COMMANDTextBox.Name = "SQL_COMMANDTextBox" ' - 'TBPM_PROFILE_FINAL_INDEXINGBindingSource - ' - Me.TBPM_PROFILE_FINAL_INDEXINGBindingSource.DataMember = "TBPM_PROFILE_FINAL_INDEXING" - Me.TBPM_PROFILE_FINAL_INDEXINGBindingSource.DataSource = Me.DD_DMSLiteDataSet - ' 'btnShowConnections ' resources.ApplyResources(Me.btnShowConnections, "btnShowConnections") @@ -1946,8 +2116,8 @@ Partial Class frmAdministration 'TBPM_ERROR_LOGDataGridView ' Me.TBPM_ERROR_LOGDataGridView.AllowUserToAddRows = False - DataGridViewCellStyle4.BackColor = System.Drawing.Color.Cyan - Me.TBPM_ERROR_LOGDataGridView.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle4 + DataGridViewCellStyle3.BackColor = System.Drawing.Color.Cyan + Me.TBPM_ERROR_LOGDataGridView.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle3 Me.TBPM_ERROR_LOGDataGridView.AutoGenerateColumns = False Me.TBPM_ERROR_LOGDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize Me.TBPM_ERROR_LOGDataGridView.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.DataGridViewTextBoxColumn17, Me.DataGridViewTextBoxColumn22, Me.DataGridViewTextBoxColumn23, Me.DataGridViewTextBoxColumn24, Me.DataGridViewTextBoxColumn25}) @@ -2194,13 +2364,18 @@ Partial Class frmAdministration Me.TabControl2.ResumeLayout(False) Me.TabPage11.ResumeLayout(False) Me.TabPage11.PerformLayout() + CType(Me.gridFinalIndex, System.ComponentModel.ISupportInitialize).EndInit() + CType(Me.TBPM_PROFILE_FINAL_INDEXINGBindingSource, System.ComponentModel.ISupportInitialize).EndInit() + CType(Me.viewFinalIndex, System.ComponentModel.ISupportInitialize).EndInit() + CType(Me.BindingNavigator1, System.ComponentModel.ISupportInitialize).EndInit() + Me.BindingNavigator1.ResumeLayout(False) + Me.BindingNavigator1.PerformLayout() Me.TabControlFinalIndices.ResumeLayout(False) Me.TabPage9.ResumeLayout(False) Me.TabPage9.PerformLayout() Me.grbxSystemStamps.ResumeLayout(False) Me.TabPage10.ResumeLayout(False) Me.TabPage10.PerformLayout() - CType(Me.TBPM_PROFILE_FINAL_INDEXINGBindingSource, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.TBDD_CONNECTIONBindingSource, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.TBPM_PROFILE_FINAL_INDEXINGBindingNavigator, System.ComponentModel.ISupportInitialize).EndInit() Me.TBPM_PROFILE_FINAL_INDEXINGBindingNavigator.ResumeLayout(False) @@ -2475,4 +2650,26 @@ Partial Class frmAdministration Friend WithEvents GridColumn4 As DevExpress.XtraGrid.Columns.GridColumn Friend WithEvents tsBtnCancel As ToolStripButton Friend WithEvents OpenFileDialog1 As OpenFileDialog + Friend WithEvents gridFinalIndex As DevExpress.XtraGrid.GridControl + Friend WithEvents viewFinalIndex As DevExpress.XtraGrid.Views.Grid.GridView + Friend WithEvents colINDEXNAME As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colADDED_WHO As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colADDED_WHEN As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colCHANGED_WHO As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colCHANGED_WHEN As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colGUID As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents BindingNavigator1 As BindingNavigator + Friend WithEvents BindingNavigatorAddNewItem As ToolStripButton + Friend WithEvents BindingNavigatorCountItem1 As ToolStripLabel + Friend WithEvents BindingNavigatorDeleteItem As ToolStripButton + Friend WithEvents BindingNavigatorMoveFirstItem1 As ToolStripButton + Friend WithEvents BindingNavigatorMovePreviousItem1 As ToolStripButton + Friend WithEvents BindingNavigatorSeparator3 As ToolStripSeparator + Friend WithEvents BindingNavigatorPositionItem1 As ToolStripTextBox + Friend WithEvents BindingNavigatorSeparator4 As ToolStripSeparator + Friend WithEvents BindingNavigatorMoveNextItem1 As ToolStripButton + Friend WithEvents BindingNavigatorMoveLastItem1 As ToolStripButton + Friend WithEvents BindingNavigatorSeparator5 As ToolStripSeparator + Friend WithEvents PropertyGrid1 As PropertyGrid + Friend WithEvents ToolStripButton4 As ToolStripButton End Class diff --git a/app/DD_PM_WINDREAM/frmAdministration.resx b/app/DD_PM_WINDREAM/frmAdministration.resx index 9ed64a3..685f26c 100644 --- a/app/DD_PM_WINDREAM/frmAdministration.resx +++ b/app/DD_PM_WINDREAM/frmAdministration.resx @@ -2107,7 +2107,7 @@ der Wertänderungen nutzen wollen: TabPage11 - 1 + 4 Segoe UI, 9pt @@ -2592,827 +2592,834 @@ der Wertänderungen nutzen wollen: True - - 765, 56 + + 245, 134 - - Label13 + + 18, 169 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage11 + + True - + 0 - - TabControlFinalIndices + + True - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - TabPage11 + + True - + 2 - - Label5 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - TabPage11 + + True - - 3 + + 4 - - Label6 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - TabPage11 + + 632, 270 - - 4 + + 93 - - TBPM_PROFILE_FINAL_INDEXINGBindingNavigator + + gridFinalIndex - - System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - + TabPage11 - - 5 + + 0 - - TBPM_PROFILE_FINAL_INDEXINGDataGridView + + 831, 212 + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC + pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++ + Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ + /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA + zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/ + IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E + rkJggg== + - - System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - TabPage11 + + 23, 22 - - 6 + + Neu hinzufügen - - 4, 25 + + 44, 22 - - 3, 3, 3, 3 + + von {0} - - 1235, 445 + + Die Gesamtanzahl der Elemente. - - 0 + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC + DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC + rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV + i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG + 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG + QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX + bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII= + - - Move und finale Indexe + + True - - TabPage11 + + 23, 22 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Löschen - - TabControl2 + + None - - 0 + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77 + wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0 + v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg + UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA + Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu + lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII= + - + True - - 291, 336 + + 23, 22 - - 260, 24 + + Erste verschieben - - 11 + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w + 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f + Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+ + 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC + - - ANNOTATE WORK HISTORY ENTRY + + True - - ANNOTATE_WORK_HISTORY_ENTRYCheckBox + + 23, 22 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Vorherige verschieben - - TabPage12 + + 6, 25 - - 0 + + Position - - 9, 336 + + False - - 292, 24 + + 50, 23 - - 9 + + 0 - - ANNOTATE ALL WORK_HISTORY_ENTRIES + + Aktuelle Position - - ANNOTATE_ALL_WORK_HISTORY_ENTRIESCheckBox + + 6, 25 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78 + n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI + N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f + oAc0QjgAAAAASUVORK5CYII= + - - TabPage12 + + True - - 1 + + 23, 22 - - Tahoma, 9pt + + Nächste verschieben - - 9, 67 + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+// + h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B + twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA + kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG + WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9 + 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg== + - + True - - 1198, 234 + + 23, 22 - - 7 + + Letzte verschieben - - SQL_VIEWTextBox + + 6, 25 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Magenta - - TabPage12 + + 23, 22 - - 3 + + ToolStripButton4 - - 9, 22 + + 682, 133 - - 1198, 23 + + 287, 25 - - 1 + + 92 - - WORK_HISTORY_ENTRYTextBox + + BindingNavigator1 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + BindingNavigator1 - - TabPage12 + + System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + TabPage11 - - 4, 25 + + 1 - - 3, 3, 3, 3 + + 1003, 5 - - 1235, 445 + + 226, 150 - - 1 + + 91 - - Nachbearbeitungsfunktionen 2 + + PropertyGrid1 - - TabPage12 + + System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage11 - - TabControl2 + + 2 - - 1 + + True - - Fill + + Segoe UI, 9.75pt, style=Italic - - 3, 3 + + 6, 3 - - 1243, 474 + + 497, 17 - - 92 - - - TabControl2 - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage6 + + 79 - - 0 + + Definieren Sie hier Aktionen welche nach erfolgreicher Indexierung durchgeführt werden: - - 4, 25 + + Label13 - - 3, 3, 3, 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1249, 480 + + TabPage11 - - 1 + + 3 - - Aktionen nach erfolgreicher Indexierung: + + Top, Bottom, Left, Right - - TabPage6 + + True - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 193, 27 - - tabctrl_Profilkonfig + + 199, 20 - - 1 + + 87 - - 9, 77 + + Wert in Vektorindex schreiben - - 1257, 509 + + CheckBoxPMVEKTOR - - 79 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabctrl_Profilkonfig + + TabPage9 - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - TabPage1 + + True - - 0 + + 24, 135 - - 4, 25 + + 45, 16 - - 3, 3, 3, 3 + + 89 - - 1272, 592 + + Label4 - - 0 + + False - - Profil-Verwaltung + + lblSaveFinalIndex - - TabPage1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage9 - - TabControl1 + + 1 - - 0 + + True - - SplitContainerProfilzuordnung + + 24, 3 - - System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 89, 16 - - TabPage2 + + 78 - - 0 + + Index wählen: - - 4, 25 + + lblIndexPMVektor - - 3, 3, 3, 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1272, 592 + + TabPage9 - - 1 + + 2 - - Profilzuordnung + + True - - TabPage2 + + 7, 108 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 19, 16 - - TabControl1 + + 86 - - 1 + + 3. - - btnUserManager + + Label11 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage3 + + TabPage9 - - 0 + + 3 - - Button2 + + 32, 50 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 160, 23 - - TabPage3 + + 88 - - 1 + + False - - VEKTOR_DELIMITERTextBox + + txtBezeichner - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage3 + + TabPage9 - - 3 + + 4 - - btnConnections + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7, 52 - - TabPage3 + + 19, 16 - - 4 + + 85 - - btnopen_SQLAdmin + + 2. - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label10 - - TabPage3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + TabPage9 + + 5 - - EMAIL_ACTIVECheckBox + + 27, 27 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 160, 24 - - TabPage3 - - - 6 - - - grpbxEmail + + 77 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cmbIndexe - - TabPage3 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + TabPage9 - - btnlicensemanager_open + + 6 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - TabPage3 + + 7, 3 - - 8 + + 19, 16 - - INTERVALL_CKECK_NO_OF_FILESNumericUpDown + + 84 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1. - - TabPage3 + + Label9 - - 10 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label3 + + TabPage9 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - TabPage3 + + True - - 11 + + 24, 52 - - GEAENDERTWERTextBox + + 21, 16 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 79 - - TabPage3 + + sd - - 13 + + False - - GEAENDERTWANNTextBox + + lblIndex - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage3 + + TabPage9 - - 15 + + 8 - - btnSaveKonfig + + btnStampDate - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage3 - - - 16 + + grbxSystemStamps - - 4, 25 + + 0 - - 3, 3, 3, 3 + + btnStampUser - - 1272, 592 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + grbxSystemStamps - - Grundeinstellungen + + 1 - - TabPage3 + + 298, 52 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 153, 80 - - TabControl1 + + 83 - - 2 + + System-Stamps - - 1092, 56 - - - TBPM_ERROR_LOGDataGridView + + False - - System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + grbxSystemStamps - - TabPage4 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + TabPage9 - - TBPM_ERROR_LOGBindingNavigator + + 9 - - System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 60, 72 - - TabPage4 + + 100, 23 - - 1 + + 80 - - 4, 25 + + False - - 3, 3, 3, 3 + + txtindexwert_final - - 1272, 592 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + TabPage9 - - Log + + 10 - - TabPage4 + + MiddleLeft - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 27, 101 - - TabControl1 + + 136, 31 - - 3 + + 82 - - Fill + + Index einfügen - - 0, 0 + + MiddleRight - - 1280, 621 + + btnInsert_FinalIndex - - 3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabControl1 + + TabPage9 - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - pnlMain + + True - - 0 + + 27, 79 - - 6, 12 + + 15, 14 - - Cyan + + 81 - - Fuchsia + + False - - Profil-Name + + chkbxfinalIndex - - True + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + TabPage9 - - 166 + + 12 - - Titel + + 4, 25 - - True + + 3, 3, 3, 3 - - 1 + + 1601, 708 - - 268, 367 + + 0 - - 84 + + Fester Wert - - GridControl1 + + TabPage9 - - DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage5 + + TabControlFinalIndices - + 0 - - Tahoma, 8.25pt, style=Bold - - - MiddleLeft - - - 1069, 25 + + True - - 139, 34 + + btnEditor - - 81 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Daten zu Profil entfernen + + TabPage10 - - MiddleRight + + 0 - - Button3 + + Label15 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage5 + + TabPage10 - + 1 - - 715, 248 - - - 230, 24 - - - 83 - - - cmbLOGIndex + + cmbIndexe2 - + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage5 + + TabPage10 - + 2 - - 715, 186 - - - 230, 24 - - - 81 + + btnSaveSQLCommand - - PM_VEKTOR_INDEXComboBox + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage10 - - TabPage5 + + 3 - - 4 + + SQL_COMMANDTextBox - - Tahoma, 9.75pt + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 715, 31 + + TabPage10 - - 238, 24 + + 4 - - 78 + + btnShowConnections - - Neueste Dokumente zuerst anzeigen + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - SORT_BY_LATESTCheckBox + + TabPage10 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - TabPage5 + + Label14 - - 7 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + TabPage10 - - Segoe UI, 9.75pt, style=Italic + + 6 - - 6, 3 + + cmbConnection - - 497, 17 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 79 + + TabPage10 - - Definieren Sie hier Aktionen welche nach erfolgreicher Indexierung durchgeführt werden: + + 7 - - Label13 + + Label4 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage11 + + TabPage10 - - 0 + + 8 - - Top, Bottom, Left, Right + + 4, 25 - - TabPage9 + + 3, 3, 3, 3 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1601, 708 - - TabControlFinalIndices + + 1 - - 0 + + Dynamisches SQL TabPage10 @@ -3433,7 +3440,7 @@ der Wertänderungen nutzen wollen: 668, 161 - 1609, 722 + 1609, 737 90 @@ -3448,759 +3455,997 @@ der Wertänderungen nutzen wollen: TabPage11 - 2 + 5 - - CheckBoxPMVEKTOR + + True - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Tahoma, 12pt, style=Bold - - TabPage9 + + 5, 83 - - 0 + + 120, 19 - - lblSaveFinalIndex + + 74 - + + Finale Indexe + + + Label5 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage9 + + TabPage11 - - 1 + + 6 - - lblIndexPMVektor + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Segoe UI, 9.75pt, style=Italic - - TabPage9 + + 6, 108 - - 2 + + 583, 17 - - Label11 + + 75 - + + Diese Indexe werden nach erfolgreicher Indexierung automatisch bei dem indexierten Dokument gesetzt. + + + Label6 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage9 + + TabPage11 - - 3 + + 7 - - txtBezeichner + + 765, 56 + + + 44, 22 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + von {0} - - TabPage9 + + Die Gesamtanzahl der Elemente. - - 4 + + None - - Label10 + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vAAADrwBlbxySQAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77 + wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0 + v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg + UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA + Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu + lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII= + - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - TabPage9 + + 23, 22 - - 5 + + Erste verschieben - - cmbIndexe + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vAAADrwBlbxySQAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w + 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f + Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+ + 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC + - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - TabPage9 + + 23, 22 - - 6 + + Vorherige verschieben - - Label9 + + 6, 25 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Position - - TabPage9 + + False - - 7 + + 50, 23 - - lblIndex + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Aktuelle Position - - TabPage9 + + 6, 25 - + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vAAADrwBlbxySQAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78 + n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI + N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f + oAc0QjgAAAAASUVORK5CYII= + + + + True + + + 23, 22 + + + Nächste verschieben + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vAAADrwBlbxySQAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+// + h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B + twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA + kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG + WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9 + 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg== + + + + True + + + 23, 22 + + + Letzte verschieben + + + 6, 25 + + + MiddleLeft + + + Magenta + + + 156, 22 + + + Neuen Index hinzufügen + + + MiddleLeft + + + Magenta + + + 99, 22 + + + Index löschen + + + MiddleLeft + + + Magenta + + + 95, 22 + + + Aktualisieren + + + MiddleRight + + + Magenta + + + 73, 22 + + + Abbruch + + + False + + + 7, 133 + + + 568, 25 + + + 76 + + + BindingNavigator1 + + + TBPM_PROFILE_FINAL_INDEXINGBindingNavigator + + + System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage11 + + 8 - - grbxSystemStamps + + True + + + Top, Bottom, Left - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9, 161 - - TabPage9 + + 653, 755 - + + 75 + + + TBPM_PROFILE_FINAL_INDEXINGDataGridView + + + System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage11 + + 9 - - txtindexwert_final + + 4, 25 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 3, 3, 3 - - TabPage9 + + 1235, 445 - - 10 + + 0 + + + Move und finale Indexe + + + TabPage11 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabControl2 + + + 0 + + + True + + + ANNOTATE_WORK_HISTORY_ENTRYCheckBox + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage12 + + + 0 + + + ANNOTATE_ALL_WORK_HISTORY_ENTRIESCheckBox + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage12 - - btnInsert_FinalIndex + + 1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + SQL_VIEWTextBox - - TabPage9 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + TabPage12 - - chkbxfinalIndex + + 3 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + WORK_HISTORY_ENTRYTextBox - - TabPage9 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 12 + + TabPage12 - + + 5 + + 4, 25 - + 3, 3, 3, 3 - - 1601, 693 + + 1235, 448 - - 0 + + 1 - - Fester Wert + + Nachbearbeitungsfunktionen 2 - - TabPage9 + + TabPage12 - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabControlFinalIndices - - - 0 + + TabControl2 - - True + + 1 - - 193, 27 + + Fill - - 199, 20 + + 3, 3 - - 87 + + 1243, 474 - - Wert in Vektorindex schreiben + + 92 - - CheckBoxPMVEKTOR + + TabControl2 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage9 + + TabPage6 - + 0 - - True - - - 24, 135 + + 4, 25 - - 45, 16 + + 3, 3, 3, 3 - - 89 + + 1249, 480 - - Label4 + + 1 - - False + + Aktionen nach erfolgreicher Indexierung: - - lblSaveFinalIndex + + TabPage6 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage9 + + tabctrl_Profilkonfig - + 1 - - True + + 9, 77 - - 24, 3 + + 1257, 509 - - 89, 16 + + 79 - - 78 + + tabctrl_Profilkonfig - - Index wählen: + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lblIndexPMVektor + + TabPage1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - TabPage9 + + 4, 25 - - 2 + + 3, 3, 3, 3 - - True + + 1272, 592 - - 7, 108 + + 0 - - 19, 16 + + Profil-Verwaltung - - 86 + + TabPage1 - - 3. + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label11 + + TabControl1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - TabPage9 + + SplitContainerProfilzuordnung - - 3 + + System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 27, 29 + + TabPage2 - - 160, 23 + + 0 - - 88 + + 4, 25 - - False + + 3, 3, 3, 3 - - txtBezeichner + + 1272, 592 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - TabPage9 + + Profilzuordnung - - 4 + + TabPage2 - - True + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabControl1 + + + 1 + + + btnUserManager + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 0 - - 7, 52 + + Button2 - - 19, 16 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 85 + + TabPage3 - - 2. + + 1 - - Label10 + + VEKTOR_DELIMITERTextBox - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage9 + + TabPage3 - - 5 + + 3 - - 27, 27 + + btnConnections - - 160, 24 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 77 + + TabPage3 - - cmbIndexe + + 4 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnopen_SQLAdmin - - TabPage9 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6 + + TabPage3 - - True + + 5 - - 7, 3 + + EMAIL_ACTIVECheckBox - - 19, 16 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 84 + + TabPage3 - - 1. + + 6 - - Label9 + + grpbxEmail - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage9 + + TabPage3 - + 7 - - True + + btnlicensemanager_open - - 24, 52 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 21, 16 + + TabPage3 - - 79 + + 8 - - sd + + INTERVALL_CKECK_NO_OF_FILESNumericUpDown - - False + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lblIndex + + TabPage3 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - TabPage9 + + Label3 - - 8 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnStampDate + + TabPage3 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - grbxSystemStamps + + GEAENDERTWERTextBox - - 0 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnStampUser + + TabPage3 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - grbxSystemStamps + + GEAENDERTWANNTextBox - - 1 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 298, 52 + + TabPage3 - - 153, 80 + + 15 - - 83 + + btnSaveKonfig - - System-Stamps + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + TabPage3 - - grbxSystemStamps + + 16 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 25 - - TabPage9 + + 3, 3, 3, 3 - - 9 + + 1272, 592 - - MiddleLeft + + 2 - - 9, 51 + + Grundeinstellungen - - 119, 29 + + TabPage3 - - 1 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Datumstempel + + TabControl1 - - MiddleRight + + 2 - - btnStampDate + + 1092, 56 + + + TBPM_ERROR_LOGDataGridView - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - grbxSystemStamps + + TabPage4 - + 0 - - MiddleLeft + + TBPM_ERROR_LOGBindingNavigator - - 9, 22 + + System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage4 - - 119, 23 + + 1 - - 0 + + 4, 25 - - Username + + 3, 3, 3, 3 - - MiddleRight + + 1272, 592 - - btnStampUser + + 3 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Log - - grbxSystemStamps + + TabPage4 - - 1 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 27, 74 + + TabControl1 - - 100, 23 + + 3 - - 80 + + Fill - - False + + 0, 0 - - txtindexwert_final + + 1280, 621 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - TabPage9 + + TabControl1 - - 10 + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleLeft + + pnlMain - - 27, 101 + + 0 - - 136, 31 + + 6, 12 - - 82 + + Cyan - - Index einfügen + + Fuchsia - - MiddleRight + + Profil-Name - - btnInsert_FinalIndex + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - TabPage9 + + 166 - - 11 + + Titel - + True - - 27, 79 + + 1 - - 15, 14 + + 268, 367 - - 81 + + 84 - - False + + GridControl1 - - chkbxfinalIndex + + DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage5 - - TabPage9 + + 0 - - 12 + + Tahoma, 8.25pt, style=Bold - - True + + MiddleLeft - - btnEditor + + 1069, 25 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 139, 34 - - TabPage10 + + 81 - - 0 + + Daten zu Profil entfernen - - Label15 + + MiddleRight - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Button3 - - TabPage10 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + TabPage5 + + 1 - - cmbIndexe2 + + 715, 248 - + + 230, 24 + + + 83 + + + cmbLOGIndex + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage10 + + TabPage5 - + 2 - - btnSaveSQLCommand - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 715, 186 - - TabPage10 + + 230, 24 - - 3 + + 81 - - SQL_COMMANDTextBox + + PM_VEKTOR_INDEXComboBox - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage10 + + TabPage5 - + 4 - - btnShowConnections + + Tahoma, 9.75pt - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 715, 31 - - TabPage10 + + 238, 24 - - 5 + + 78 - - Label14 + + Neueste Dokumente zuerst anzeigen + + + SORT_BY_LATESTCheckBox + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage5 + + + 7 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleLeft - - TabPage10 + + 9, 51 - - 6 + + 119, 29 - - cmbConnection + + 1 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Datumstempel - - TabPage10 + + MiddleRight - - 7 + + btnStampDate - - Label4 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + grbxSystemStamps - - TabPage10 + + 0 - - 8 + + MiddleLeft - - 4, 25 + + 9, 22 - - 3, 3, 3, 3 + + 119, 23 - - 1601, 693 + + 0 - - 1 + + Username - - Dynamisches SQL + + MiddleRight - - TabPage10 + + btnStampUser - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabControlFinalIndices + + grbxSystemStamps - + 1 @@ -4331,9 +4576,6 @@ der Wertänderungen nutzen wollen: 3 - - 245, 134 - Courier New, 9pt @@ -4361,9 +4603,6 @@ der Wertänderungen nutzen wollen: 4 - - 245, 134 - Tahoma, 9.75pt @@ -4455,329 +4694,148 @@ der Wertänderungen nutzen wollen: 7 - 502, 173 - - - True - - - 5, 49 - - - 99, 16 - - - 0 - - - SQL-Command: - - - Label4 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage10 - - - 8 - - - True - - - Tahoma, 12pt, style=Bold - - - 5, 83 - - - 120, 19 - - - 74 - - - Finale Indexe - - - Label5 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage11 - - - 3 - - - True - - - Segoe UI, 9.75pt, style=Italic - - - 6, 108 - - - 583, 17 - - - 75 - - - Diese Indexe werden nach erfolgreicher Indexierung automatisch bei dem indexierten Dokument gesetzt. - - - Label6 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage11 - - - 4 - - - 765, 56 - - - 44, 22 - - - von {0} - - - Die Gesamtanzahl der Elemente. - - - None - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77 - wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0 - v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg - UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA - Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu - lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII= - - - - True - - - 23, 22 - - - Erste verschieben - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w - 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f - Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+ - 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC - - - - True - - - 23, 22 - - - Vorherige verschieben - - - 6, 25 - - - Position - - - False - - - 50, 23 - - - 0 - - - Aktuelle Position - - - 6, 25 - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78 - n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI - N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f - oAc0QjgAAAAASUVORK5CYII= - - - + 502, 173 + + True - - 23, 22 - - - Nächste verschieben + + 5, 49 - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+// - h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B - twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA - kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG - WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9 - 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg== - + + 99, 16 - - True + + 0 - - 23, 22 + + SQL-Command: - - Letzte verschieben + + Label4 - - 6, 25 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleLeft + + TabPage10 - - Magenta + + 8 - - 156, 22 + + True + + + ID - - Neuen Index hinzufügen + + Indexname - - MiddleLeft + + Value - - Magenta + + Erstellt wer - - 99, 22 + + Erstellt wann - - Index löschen + + 291, 336 - - MiddleLeft + + 260, 24 - - Magenta + + 11 - - 95, 22 + + ANNOTATE WORK HISTORY ENTRY - - Aktualisieren + + ANNOTATE_WORK_HISTORY_ENTRYCheckBox - - MiddleRight + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Magenta + + TabPage12 - - 73, 22 + + 0 - - Abbruch + + 9, 336 - - False + + 292, 24 - - 7, 133 + + 9 - - 568, 25 + + ANNOTATE ALL WORK_HISTORY_ENTRIES - - 76 + + ANNOTATE_ALL_WORK_HISTORY_ENTRIESCheckBox - - BindingNavigator1 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TBPM_PROFILE_FINAL_INDEXINGBindingNavigator + + TabPage12 - - System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - TabPage11 + + Tahoma, 9pt - - 5 + + 9, 67 - + True - - - Top, Bottom, Left - - 9, 161 + + 1198, 234 - - 653, 740 + + 7 - - 75 + + SQL_VIEWTextBox - - TBPM_PROFILE_FINAL_INDEXINGDataGridView + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage12 - - TabPage11 + + 3 - - 6 + + 9, 22 - - True - - - ID + + 1198, 23 - - Indexname + + 1 - - Value + + WORK_HISTORY_ENTRYTextBox - - Erstellt wer + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Erstellt wann + + TabPage12 + + + 5 Fill @@ -6441,6 +6499,120 @@ der Wertänderungen nutzen wollen: System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + viewFinalIndex + + + DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a + + + colGUID + + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a + + + colINDEXNAME + + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a + + + colADDED_WHO + + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a + + + colADDED_WHEN + + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a + + + colCHANGED_WHO + + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a + + + colCHANGED_WHEN + + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a + + + BindingNavigatorAddNewItem + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BindingNavigatorCountItem1 + + + System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BindingNavigatorDeleteItem + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BindingNavigatorMoveFirstItem1 + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BindingNavigatorMovePreviousItem1 + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BindingNavigatorSeparator3 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BindingNavigatorPositionItem1 + + + System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BindingNavigatorSeparator4 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BindingNavigatorMoveNextItem1 + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BindingNavigatorMoveLastItem1 + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BindingNavigatorSeparator5 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ToolStripButton4 + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + TBDD_CONNECTIONBindingSource diff --git a/app/DD_PM_WINDREAM/frmAdministration.vb b/app/DD_PM_WINDREAM/frmAdministration.vb index 0ce6509..5d21dd7 100644 --- a/app/DD_PM_WINDREAM/frmAdministration.vb +++ b/app/DD_PM_WINDREAM/frmAdministration.vb @@ -12,6 +12,7 @@ Public Class frmAdministration Dim formloaded As Boolean Private INSERT_ACTIVE As Boolean = False + Dim Windream_Indicies As List(Of String) Private Sub frmFormDesigner_Load(sender As Object, e As System.EventArgs) Handles Me.Load @@ -65,6 +66,12 @@ Public Class frmAdministration End Try ObjekttypenEintragen() Indexe_eintragen() + + Try + Windream_Indicies = _windreamPM.GetIndicesByObjecttype(cmbObjekttypen.Text).ToList() + Catch ex As Exception + MsgBox("Fehler bei Indexe_eintragen: " & vbNewLine & ex.Message, MsgBoxStyle.Critical, "Achtung:") + End Try End Sub Sub Indexe_eintragen() If cmbObjekttypen.Text <> "" Then @@ -972,4 +979,108 @@ Public Class frmAdministration Private Sub TabControl2_SelectedIndexChanged_1(sender As Object, e As EventArgs) Handles TabControl2.SelectedIndexChanged CancelFinalIndexInsert() End Sub + + Private Sub GridView2_FocusedRowChanged(sender As Object, e As Views.Base.FocusedRowChangedEventArgs) Handles viewFinalIndex.FocusedRowChanged + Try + Dim view As GridView = sender + Dim focusedRow As DataRow = view.GetFocusedDataRow() + + Dim guid As Integer = focusedRow.Item("GUID") + Dim index As String = focusedRow.Item("INDEXNAME") + Dim sqlCommand As String = focusedRow.Item("SQL_COMMAND") + Dim connectionId As Integer = focusedRow.Item("CONNECTION_ID") + Dim value As String = focusedRow.Item("VALUE") + + CURRENT_INDEX_ID = guid + CURRENT_SQL_CON = connectionId + + Dim obj As New FinalIndexProperties() + obj.GUID = guid + obj.IndexName = index + obj.StaticValue = value + obj.SQLCommand = New SQLValue(sqlCommand) + obj.ConnectionId = connectionId + obj.Indicies = Windream_Indicies + + PropertyGrid1.SelectedObject = obj + Catch ex As Exception + MsgBox($"Error while loading Final Index properties: {ex.Message}") + ClassLogger.Add($"Error while loading Final Index properties: {ex.Message}") + End Try + End Sub + + Private Sub BindingNavigatorAddNewItem_Click(sender As Object, e As EventArgs) Handles BindingNavigatorAddNewItem.Click + Dim obj As New FinalIndexProperties() + obj.Indicies = Windream_Indicies + obj.SQLCommand = New SQLValue() + + PropertyGrid1.SelectedObject = obj + + INSERT_ACTIVE = True + End Sub + + Private Sub ToolStripButton4_Click_1(sender As Object, e As EventArgs) Handles ToolStripButton4.Click + Try + Dim obj As FinalIndexProperties = PropertyGrid1.SelectedObject + + If Not IsNothing(obj) Then + Dim guid = obj.GUID + Dim profileId As Integer = PROFILGUIDTextBox.Text + Dim connectionId As Integer = obj.ConnectionId + Dim sqlCommand As String = obj.SQLCommand.Value.Replace("'", "''") + Dim indexName As String = obj.IndexName + Dim value As String = obj.StaticValue + Dim addedWho As String = Environment.UserName + + If NotNull(indexName, "") = String.Empty Then + MsgBox("Das Feld Index muss ausgefüllt sein!", MsgBoxStyle.Exclamation) + Exit Sub + End If + + If NotNull(sqlCommand, "") = String.Empty And NotNull(value, "") = String.Empty Then + MsgBox("Entweder SQL Command oder StaticValue müssen ausgefüllt sein!", MsgBoxStyle.Exclamation) + Exit Sub + End If + + + + If INSERT_ACTIVE = True Then + Dim sql As String = $"INSERT INTO TBPM_PROFILE_FINAL_INDEXING (PROFIL_ID, CONNECTION_ID, SQL_COMMAND, INDEXNAME, VALUE, ADDED_WHO) + VALUES ({profileId}, {connectionId}, '{sqlCommand}', '{indexName}', '{value}', '{addedWho}')" + + If ClassDatabase.Execute_non_Query(sql, True) Then + INSERT_ACTIVE = False + End If + Else + Dim sql As String = $"UPDATE TBPM_PROFILE_FINAL_INDEXING + SET CONNECTION_ID = {connectionId}, SQL_COMMAND = '{sqlCommand}', INDEXNAME = '{indexName}', CHANGED_WHO = '{addedWho}' + WHERE GUID = {guid}" + + If ClassDatabase.Execute_non_Query(sql, True) Then + + End If + End If + + Refresh_Final_indexe() + + End If + Catch ex As Exception + MsgBox("Error while Saving Final Index: " & ex.Message, MsgBoxStyle.Critical) + ClassLogger.Add("Error while Saving Final Index: " & ex.Message) + End Try + End Sub + + Private Sub PropertyGrid1_PropertyValueChanged(s As Object, e As PropertyValueChangedEventArgs) Handles PropertyGrid1.PropertyValueChanged + Dim propertyGrid As PropertyGrid = s + Dim obj As FinalIndexProperties = propertyGrid.SelectedObject + + If TypeOf (e.ChangedItem.Value) Is SQLValue Then + + obj.ConnectionId = CURRENT_SQL_CON + obj.StaticValue = "SQL-Command" + ElseIf e.ChangedItem.Label = "StaticValue" Then + + obj.SQLCommand.Value = String.Empty + End If + End Sub End Class \ No newline at end of file diff --git a/app/DD_PM_WINDREAM/frmFormDesigner.vb b/app/DD_PM_WINDREAM/frmFormDesigner.vb index bced4a2..9ab8225 100644 --- a/app/DD_PM_WINDREAM/frmFormDesigner.vb +++ b/app/DD_PM_WINDREAM/frmFormDesigner.vb @@ -23,6 +23,10 @@ Public Class frmFormDesigner Private Sub frmFormDesigner_Load(sender As Object, e As EventArgs) Handles Me.Load Try + ' Setzt den typ des SQL-Befehls für frmSQL_DESIGNER + CURRENT_DESIGN_TYPE = "INPUT_INDEX" + + ' Profil Name in Fenstertitel setzen Text = $"Validation Designer - Profil: {ProfileName}" @@ -83,6 +87,8 @@ Public Class frmFormDesigner frmControl_Detail.Close() End If + ' Setzt den typ des SQL-Befehls für frmSQL_DESIGNER + CURRENT_DESIGN_TYPE = "FINAL_INDEX" End Sub ''' @@ -599,7 +605,7 @@ Public Class frmFormDesigner obj.Required = StrToBool(row.Item("VALIDATION")) obj.Index = NotNull(row.Item("INDEX_NAME"), "") obj.DefaultValue = NotNull(row.Item("DEFAULT_VALUE"), Nothing) - obj.SQLCommand = New InputProperties.SQLValue(row.Item("SQL_UEBERPRUEFUNG")) + obj.SQLCommand = New SQLValue(row.Item("SQL_UEBERPRUEFUNG")) Return obj End Function @@ -779,8 +785,8 @@ Public Class frmFormDesigner ' Strings und SQL-Commands müssen vor dem Speichern escaped und mit Anführungszeichen versehen werden If TypeOf value Is String Then escapedValue = $"'{value}'" - ElseIf TypeOf value Is InputProperties.SQLValue Then - Dim v As InputProperties.SQLValue = value + ElseIf TypeOf value Is SQLValue Then + Dim v As SQLValue = value escapedValue = $"'{v.Value.Replace("'", "''")}'" End If diff --git a/app/DD_PM_WINDREAM/frmSQL_DESIGNER.vb b/app/DD_PM_WINDREAM/frmSQL_DESIGNER.vb index 0088184..3d48456 100644 --- a/app/DD_PM_WINDREAM/frmSQL_DESIGNER.vb +++ b/app/DD_PM_WINDREAM/frmSQL_DESIGNER.vb @@ -15,7 +15,7 @@ Public Class frmSQL_DESIGNER Public Property FormId As Integer End Class - Public Property Value() As String + Public Property SQLCommand() As String Get Return SQL_COMMANDTextBox.Text End Get @@ -24,6 +24,8 @@ Public Class frmSQL_DESIGNER End Set End Property + Public Property ConnectionID As Integer + Private Sub TBPM_PROFILE_FINAL_INDEXINGBindingNavigatorSaveItem_Click(sender As Object, e As EventArgs) Validate() TBPM_PROFILE_FINAL_INDEXINGBindingSource.EndEdit() @@ -39,13 +41,17 @@ Public Class frmSQL_DESIGNER CURRENT_DT_SQL_CONFIG_TABLE = ClassDatabase.Return_Datatable(String.Format("SELECT T.CONNECTION_ID,T1.BEZEICHNUNG AS 'CON_STRING',ISNULL(T.SQL_UEBERPRUEFUNG,'') AS 'SQL_COMMAND' FROM TBPM_PROFILE_CONTROLS T, TBDD_CONNECTION T1 WHERE T.CONNECTION_ID = T1.GUID AND T.GUID = {0}", CURRENT_CONTROL_ID), True) - If CURRENT_DT_SQL_CONFIG_TABLE.Rows.Count > 0 Then - cmbConnection.SelectedValue = CURRENT_DT_SQL_CONFIG_TABLE.Rows(0).Item("CONNECTION_ID") - cmbConnection.FindStringExact(CURRENT_DT_SQL_CONFIG_TABLE.Rows(0).Item("CON_STRING")) - SQL_COMMANDTextBox.Text = CURRENT_DT_SQL_CONFIG_TABLE.Rows(0).Item("SQL_COMMAND") - Else - SQL_COMMANDTextBox.Text = String.Empty + If CURRENT_DESIGN_TYPE = "INPUT_INDEX" Then + If CURRENT_DT_SQL_CONFIG_TABLE.Rows.Count > 0 Then + cmbConnection.SelectedValue = CURRENT_DT_SQL_CONFIG_TABLE.Rows(0).Item("CONNECTION_ID") + cmbConnection.FindStringExact(CURRENT_DT_SQL_CONFIG_TABLE.Rows(0).Item("CON_STRING")) + SQL_COMMANDTextBox.Text = CURRENT_DT_SQL_CONFIG_TABLE.Rows(0).Item("SQL_COMMAND") + Else + SQL_COMMANDTextBox.Text = String.Empty + End If End If + + Try ' Windream instanziieren _windreamPM = New ClassPMWindream() @@ -208,9 +214,12 @@ Public Class frmSQL_DESIGNER Private Sub btnSaveSQLCommand_Click(sender As Object, e As EventArgs) Handles btnSaveSQLCommand.Click If CURRENT_DESIGN_TYPE = "FINAL_INDEX" Then - TBPM_PROFILE_FINAL_INDEXINGTableAdapter.cmdUpdateSQL(cmbConnection.SelectedValue, SQL_COMMANDTextBox.Text, Environment.UserName, CURRENT_INDEX_ID) + ' SQL wird nicht hier, sondern in frmAdministration gespeichert + 'TBPM_PROFILE_FINAL_INDEXINGTableAdapter.cmdUpdateSQL(cmbConnection.SelectedValue, SQL_COMMANDTextBox.Text, Environment.UserName, CURRENT_INDEX_ID) lblSaveFinalIndex.Visible = True lblSaveFinalIndex.Text = "SQL für finalen Index wurde erfolgreich gespeichert! " & Now.ToString + Me.SQLCommand = SQL_COMMANDTextBox.Text + Me.ConnectionId = cmbConnection.SelectedValue ElseIf CURRENT_DESIGN_TYPE = "INPUT_INDEX" Then Dim command = SQL_COMMANDTextBox.Text command = command.Replace("'", "''") @@ -221,7 +230,7 @@ Public Class frmSQL_DESIGNER Else lblSaveFinalIndex.Visible = False End If - Me.Value = SQL_COMMANDTextBox.Text + Me.SQLCommand = SQL_COMMANDTextBox.Text End If End Sub