diff --git a/app/DD_PM_WINDREAM/ClassDragDrop.vb b/app/DD_PM_WINDREAM/ClassDragDrop.vb new file mode 100644 index 0000000..2dc55fb --- /dev/null +++ b/app/DD_PM_WINDREAM/ClassDragDrop.vb @@ -0,0 +1,84 @@ +Imports DDUserManager.UserDataSet +Imports DevExpress.XtraGrid +Imports DevExpress.XtraGrid.Views.Grid +Imports DevExpress.XtraGrid.Views.Grid.ViewInfo + +Public Class ClassDragDrop + Private downHitInfo As GridHitInfo = Nothing + + Public Sub New() + End Sub + + Public Sub AddGridView(view As GridView) + AddHandler view.MouseDown, AddressOf view_MouseDown + AddHandler view.MouseMove, AddressOf view_MouseMove + AddHandler view.GridControl.DragOver, AddressOf grid_DragOver + End Sub + + Private Sub view_MouseDown(sender As Object, e As MouseEventArgs) + Dim view As GridView = sender + downHitInfo = Nothing + Dim hitInfo As GridHitInfo = view.CalcHitInfo(New Point(e.X, e.Y)) + + If Control.ModifierKeys <> Keys.None Then + Return + End If + + If e.Button = MouseButtons.Left And hitInfo.RowHandle >= 0 Then + downHitInfo = hitInfo + End If + End Sub + + Private Sub view_MouseMove(sender As Object, e As MouseEventArgs) + Dim view As GridView = sender + Dim hitInfo As GridHitInfo = view.CalcHitInfo(New Point(e.X, e.Y)) + + If e.Button = MouseButtons.Left And Not IsNothing(downHitInfo) Then + Dim dragSize As Size = SystemInformation.DragSize + Dim dragRect As New Rectangle(New Point(downHitInfo.HitPoint.X - dragSize.Width / 2, downHitInfo.HitPoint.Y - dragSize.Height / 2), dragSize) + + ' DragRect ist ein kleines Rechteck, dessen Mitte der Punkt ist, wo die Maus geklickt wurde. + ' Es soll verhindern, dass durch schnelles Klicken unbeabsichtigt Drag'n'Drop Operationen initiiert werden + ' Siehe: https://msdn.microsoft.com/en-us/library/system.windows.forms.systeminformation.dragsize(v=vs.110).aspx + If Not dragRect.Contains(New Point(e.X, e.Y)) Then + ' dragDropData enhält eine einzelne Row oder den kompletten View, + ' jenachdem, wie die Drag'n'Drop Operation gestartet wurde. + Dim dragDropData As String + + ' Wenn keine Zeile markiert ist + If downHitInfo.RowHandle < 0 Then + Exit Sub + End If + + ' Wenn zwar eine Zeile markiert ist, aber keine über die Checkbox angehakt wurde, + ' wird die markierte Zeile übergeben. + ' Wenn 1 oder n Zeilen über die Checkbox angehakt wurde, werden diese übergeben + Dim row As DataRow = view.GetDataRow(downHitInfo.RowHandle) + Dim source As String = view.GridControl.Name + + + dragDropData = row.Item("GUID") & "|" & source + + view.GridControl.DoDragDrop(dragDropData, DragDropEffects.Move) + downHitInfo = Nothing + + DevExpress.Utils.DXMouseEventArgs.GetMouseArgs(e).Handled = True + End If + End If + End Sub + + Private Sub grid_DragOver(sender As Object, e As DragEventArgs) + If e.Data.GetDataPresent(DataFormats.Text) Then + Dim data As String = e.Data.GetData(DataFormats.Text) + Dim source = data.Split("|")(1) + + Dim grid As GridControl = sender + + If grid.Name <> source Then + e.Effect = DragDropEffects.Move + End If + Else + e.Effect = DragDropEffects.None + End If + End Sub +End Class diff --git a/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.Designer.vb b/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.Designer.vb index 7705b1c..e5ea133 100644 --- a/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.Designer.vb +++ b/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.Designer.vb @@ -13991,7 +13991,7 @@ Namespace DD_DMSLiteDataSetTableAdapters _ Private Sub InitCommandCollection() - Me._commandCollection = New Global.System.Data.SqlClient.SqlCommand(0) {} + Me._commandCollection = New Global.System.Data.SqlClient.SqlCommand(1) {} Me._commandCollection(0) = New Global.System.Data.SqlClient.SqlCommand() Me._commandCollection(0).Connection = Me.Connection Me._commandCollection(0).CommandText = "SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, ADDED_WHO, ADDED_WHEN, CHANGE"& _ @@ -14003,6 +14003,14 @@ Namespace DD_DMSLiteDataSetTableAdapters " TBDD_MODULES"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "& _ " WHERE (SHORT_NAME = 'PM')))))" Me._commandCollection(0).CommandType = Global.System.Data.CommandType.Text + Me._commandCollection(1) = New Global.System.Data.SqlClient.SqlCommand() + Me._commandCollection(1).Connection = Me.Connection + Me._commandCollection(1).CommandText = "SELECT T1.* FROM TBDD_USER_MODULES T, TBDD_USER T1 WHERE T.USER_ID = T1.GUID AND"& _ + " T.MODULE_ID = (SELECT GUID FROM TBDD_MODULES WHERE SHORT_NAME = 'PM') AND T.USE"& _ + "R_ID NOT IN (SELECT USER_ID FROM TBPM_PROFILE_USER WHERE PROFIL_ID = @PROFILE_ID"& _ + ")" + Me._commandCollection(1).CommandType = Global.System.Data.CommandType.Text + Me._commandCollection(1).Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@PROFILE_ID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", "")) End Sub _ + Public Overloads Overridable Function FillByProfileId_NotAssigned(ByVal dataTable As DD_DMSLiteDataSet.TBDD_USERDataTable, ByVal PROFILE_ID As Integer) As Integer + Me.Adapter.SelectCommand = Me.CommandCollection(1) + Me.Adapter.SelectCommand.Parameters(0).Value = CType(PROFILE_ID,Integer) + If (Me.ClearBeforeFill = true) Then + dataTable.Clear + End If + Dim returnValue As Integer = Me.Adapter.Fill(dataTable) + Return returnValue + End Function + + _ + Public Overloads Overridable Function GetDataByProfileId_NotAssigned(ByVal PROFILE_ID As Integer) As DD_DMSLiteDataSet.TBDD_USERDataTable + Me.Adapter.SelectCommand = Me.CommandCollection(1) + Me.Adapter.SelectCommand.Parameters(0).Value = CType(PROFILE_ID,Integer) + Dim dataTable As DD_DMSLiteDataSet.TBDD_USERDataTable = New DD_DMSLiteDataSet.TBDD_USERDataTable() + Me.Adapter.Fill(dataTable) + Return dataTable + End Function + _ diff --git a/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsd b/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsd index 591dbaf..9f0096b 100644 --- a/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsd +++ b/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xsd @@ -495,7 +495,18 @@ SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHE - + + + + + SELECT T1.* FROM TBDD_USER_MODULES T, TBDD_USER T1 WHERE T.USER_ID = T1.GUID AND T.MODULE_ID = (SELECT GUID FROM TBDD_MODULES WHERE SHORT_NAME = 'PM') AND T.USER_ID NOT IN (SELECT USER_ID FROM TBPM_PROFILE_USER WHERE PROFIL_ID = @PROFILE_ID) + + + + + + + @@ -1956,7 +1967,7 @@ WHERE (GUID = @GUID) - + @@ -2001,7 +2012,7 @@ WHERE (GUID = @GUID) - + @@ -2104,7 +2115,7 @@ WHERE (GUID = @GUID) - + @@ -2200,7 +2211,7 @@ WHERE (GUID = @GUID) - + @@ -2251,7 +2262,7 @@ WHERE (GUID = @GUID) - + @@ -2281,7 +2292,7 @@ WHERE (GUID = @GUID) - + @@ -2304,7 +2315,7 @@ WHERE (GUID = @GUID) - + @@ -2394,7 +2405,7 @@ WHERE (GUID = @GUID) - + @@ -2467,7 +2478,7 @@ WHERE (GUID = @GUID) - + @@ -2503,7 +2514,7 @@ WHERE (GUID = @GUID) - + @@ -2518,7 +2529,7 @@ WHERE (GUID = @GUID) - + @@ -2539,7 +2550,7 @@ WHERE (GUID = @GUID) - + @@ -2647,7 +2658,7 @@ WHERE (GUID = @GUID) - + @@ -2720,7 +2731,7 @@ WHERE (GUID = @GUID) - + @@ -2771,7 +2782,7 @@ WHERE (GUID = @GUID) - + @@ -2863,7 +2874,7 @@ WHERE (GUID = @GUID) - + @@ -2994,11 +3005,11 @@ WHERE (GUID = @GUID) - - - - - + + + + + \ 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 bca091e..e6cecba 100644 --- a/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xss +++ b/app/DD_PM_WINDREAM/DD_DMSLiteDataSet.xss @@ -9,18 +9,18 @@ - + - - - - + + + + - - + + - - + + @@ -80,7 +80,7 @@ - + 141 diff --git a/app/DD_PM_WINDREAM/DD_PM_WINDREAM.vbproj b/app/DD_PM_WINDREAM/DD_PM_WINDREAM.vbproj index caa1b57..47c071e 100644 --- a/app/DD_PM_WINDREAM/DD_PM_WINDREAM.vbproj +++ b/app/DD_PM_WINDREAM/DD_PM_WINDREAM.vbproj @@ -155,6 +155,7 @@ + diff --git a/app/DD_PM_WINDREAM/frmProfileDesigner.Designer.vb b/app/DD_PM_WINDREAM/frmProfileDesigner.Designer.vb index 7121170..a66eae5 100644 --- a/app/DD_PM_WINDREAM/frmProfileDesigner.Designer.vb +++ b/app/DD_PM_WINDREAM/frmProfileDesigner.Designer.vb @@ -25,18 +25,6 @@ Partial Class frmProfileDesigner Me.components = New System.ComponentModel.Container() Dim GUIDLabel As System.Windows.Forms.Label Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmProfileDesigner)) - Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle() - Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle() - Dim CHANGED_WHENLabel1 As System.Windows.Forms.Label - Dim CHANGED_WHOLabel1 As System.Windows.Forms.Label - Dim ADDED_WHENLabel1 As System.Windows.Forms.Label - Dim ADDED_WHOLabel1 As System.Windows.Forms.Label - Dim EMAILLabel As System.Windows.Forms.Label - Dim USERNAMELabel As System.Windows.Forms.Label - Dim NAMELabel1 As System.Windows.Forms.Label - Dim PRENAMELabel As System.Windows.Forms.Label - Dim GUIDLabel1 As System.Windows.Forms.Label - Dim ToolStripButton4 As System.Windows.Forms.ToolStripButton Dim NAMELabel As System.Windows.Forms.Label Dim DESCRIPTIONLabel As System.Windows.Forms.Label Dim WD_SEARCHLabel As System.Windows.Forms.Label @@ -61,72 +49,35 @@ Partial Class frmProfileDesigner 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 DataGridViewCellStyle3 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle() - Dim DataGridViewCellStyle4 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle() + Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle() Me.SplitContainer_Profilzuordnung2 = New System.Windows.Forms.SplitContainer() - Me.TBPROFILE_USERDataGridView = New System.Windows.Forms.DataGridView() - Me.DataGridViewTextBoxColumn4 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn5 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn6 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn7 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn8 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn9 = New System.Windows.Forms.DataGridViewTextBoxColumn() + Me.gridAssignedUsers = New DevExpress.XtraGrid.GridControl() Me.TBPROFILE_USERBindingSource = New System.Windows.Forms.BindingSource(Me.components) Me.DD_DMSLiteDataSet = New DD_PM_WINDREAM.DD_DMSLiteDataSet() - Me.TBPROFILE_USERBindingNavigator = New System.Windows.Forms.BindingNavigator(Me.components) - Me.BindingNavigatorCountItem2 = New System.Windows.Forms.ToolStripLabel() - Me.BindingNavigatorDeleteItem = New System.Windows.Forms.ToolStripButton() - Me.BindingNavigatorMoveFirstItem2 = New System.Windows.Forms.ToolStripButton() - Me.BindingNavigatorMovePreviousItem2 = New System.Windows.Forms.ToolStripButton() - Me.BindingNavigatorSeparator6 = New System.Windows.Forms.ToolStripSeparator() - Me.BindingNavigatorPositionItem2 = New System.Windows.Forms.ToolStripTextBox() - Me.BindingNavigatorSeparator7 = New System.Windows.Forms.ToolStripSeparator() - Me.BindingNavigatorMoveNextItem2 = New System.Windows.Forms.ToolStripButton() - Me.BindingNavigatorMoveLastItem2 = New System.Windows.Forms.ToolStripButton() - Me.BindingNavigatorSeparator8 = New System.Windows.Forms.ToolStripSeparator() - Me.ToolStripSeparator8 = New System.Windows.Forms.ToolStripSeparator() - Me.ToolStripLabel2 = New System.Windows.Forms.ToolStripLabel() - Me.TabControlUser = New System.Windows.Forms.TabControl() - Me.TabPage7 = New System.Windows.Forms.TabPage() - Me.TBPM_USERDataGridView = New System.Windows.Forms.DataGridView() - Me.DataGridViewTextBoxColumn3 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn10 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn11 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn12 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn13 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn18 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn19 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn20 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn21 = New System.Windows.Forms.DataGridViewTextBoxColumn() + Me.viewAssignedUsers = New DevExpress.XtraGrid.Views.Grid.GridView() + Me.colGUID2 = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colPRENAME1 = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colNAME3 = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colUSERNAME1 = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colADDED_WHO1 = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colADDED_WHEN1 = New DevExpress.XtraGrid.Columns.GridColumn() + Me.Panel1 = New System.Windows.Forms.Panel() + Me.btnUserManager = New System.Windows.Forms.Button() + Me.Label20 = New System.Windows.Forms.Label() + Me.gridAvailableUsers = New DevExpress.XtraGrid.GridControl() Me.TBDD_USERBindingSource = New System.Windows.Forms.BindingSource(Me.components) - Me.TabPage8 = New System.Windows.Forms.TabPage() - Me.GroupBox1 = New System.Windows.Forms.GroupBox() - Me.RIGHT_FILE_DELETECheckBox = New System.Windows.Forms.CheckBox() - Me.lblSaveUser = New System.Windows.Forms.Label() - Me.CHANGED_WHENTextBox1 = New System.Windows.Forms.TextBox() - Me.CHANGED_WHOTextBox1 = New System.Windows.Forms.TextBox() - Me.ADDED_WHENTextBox1 = New System.Windows.Forms.TextBox() - Me.ADDED_WHOTextBox1 = New System.Windows.Forms.TextBox() - Me.EMAILTextBox = New System.Windows.Forms.TextBox() - Me.USERNAMETextBox = New System.Windows.Forms.TextBox() - Me.NAMETextBox1 = New System.Windows.Forms.TextBox() - Me.PRENAMETextBox = New System.Windows.Forms.TextBox() - Me.GUIDTextBox = New System.Windows.Forms.TextBox() - Me.TBDD_USERBindingNavigator = New System.Windows.Forms.BindingNavigator(Me.components) - Me.ToolStripButton5 = New System.Windows.Forms.ToolStripButton() - Me.ToolStripLabel3 = New System.Windows.Forms.ToolStripLabel() - Me.ToolStripButton6 = New System.Windows.Forms.ToolStripButton() - Me.ToolStripButton7 = New System.Windows.Forms.ToolStripButton() - Me.ToolStripButton8 = New System.Windows.Forms.ToolStripButton() - Me.ToolStripSeparator5 = New System.Windows.Forms.ToolStripSeparator() - Me.ToolStripTextBox2 = New System.Windows.Forms.ToolStripTextBox() - Me.ToolStripSeparator6 = New System.Windows.Forms.ToolStripSeparator() - Me.ToolStripButton9 = New System.Windows.Forms.ToolStripButton() - Me.ToolStripButton10 = New System.Windows.Forms.ToolStripButton() - Me.ToolStripSeparator7 = New System.Windows.Forms.ToolStripSeparator() - Me.ToolStripButton11 = New System.Windows.Forms.ToolStripButton() - Me.tsbtnworkUser = New System.Windows.Forms.ToolStripButton() - Me.ToolStripButton12 = New System.Windows.Forms.ToolStripButton() + Me.viewAvailableUsers = New DevExpress.XtraGrid.Views.Grid.GridView() + Me.colGUID1 = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colPRENAME = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colNAME2 = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colUSERNAME = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colEMAIL = 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.Panel2 = New System.Windows.Forms.Panel() + Me.Label19 = New System.Windows.Forms.Label() Me.TableAdapterManager = New DD_PM_WINDREAM.DD_DMSLiteDataSetTableAdapters.TableAdapterManager() Me.TBPM_PROFILEBindingSource = New System.Windows.Forms.BindingSource(Me.components) Me.TBPM_PROFILETableAdapter = New DD_PM_WINDREAM.DD_DMSLiteDataSetTableAdapters.TBPM_PROFILETableAdapter() @@ -273,19 +224,11 @@ Partial Class frmProfileDesigner Me.viewColumns = New DevExpress.XtraGrid.Views.Grid.GridView() Me.TabPage2 = New System.Windows.Forms.TabPage() Me.SplitContainerProfilzuordnung = New System.Windows.Forms.SplitContainer() - Me.TBPM_PROFILE_ZuordnungDataGridView = New System.Windows.Forms.DataGridView() - Me.DataGridViewTextBoxColumn1 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.DataGridViewTextBoxColumn2 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.TBPM_PROFILE_ZuordnungBindingNavigator = New System.Windows.Forms.BindingNavigator(Me.components) - Me.BindingNavigatorCountItem1 = New System.Windows.Forms.ToolStripLabel() - 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.gridAvailableProfiles = New DevExpress.XtraGrid.GridControl() + Me.viewAvailableProfiles = New DevExpress.XtraGrid.Views.Grid.GridView() + Me.colGUID = New DevExpress.XtraGrid.Columns.GridColumn() + Me.colNAME1 = New DevExpress.XtraGrid.Columns.GridColumn() + Me.Label21 = New System.Windows.Forms.Label() Me.TabPage3 = New System.Windows.Forms.TabPage() Me.Button2 = New System.Windows.Forms.Button() Me.VEKTOR_DELIMITERTextBox = New System.Windows.Forms.TextBox() @@ -343,16 +286,6 @@ Partial Class frmProfileDesigner Me.TBPM_PROFILE_FILESTableAdapter = New DD_PM_WINDREAM.DD_DMSLiteDataSetTableAdapters.TBPM_PROFILE_FILESTableAdapter() Me.TBDD_CONNECTIONTableAdapter = New DD_PM_WINDREAM.DD_DMSLiteDataSetTableAdapters.TBDD_CONNECTIONTableAdapter() GUIDLabel = New System.Windows.Forms.Label() - CHANGED_WHENLabel1 = New System.Windows.Forms.Label() - CHANGED_WHOLabel1 = New System.Windows.Forms.Label() - ADDED_WHENLabel1 = New System.Windows.Forms.Label() - ADDED_WHOLabel1 = New System.Windows.Forms.Label() - EMAILLabel = New System.Windows.Forms.Label() - USERNAMELabel = New System.Windows.Forms.Label() - NAMELabel1 = New System.Windows.Forms.Label() - PRENAMELabel = New System.Windows.Forms.Label() - GUIDLabel1 = New System.Windows.Forms.Label() - ToolStripButton4 = New System.Windows.Forms.ToolStripButton() NAMELabel = New System.Windows.Forms.Label() DESCRIPTIONLabel = New System.Windows.Forms.Label() WD_SEARCHLabel = New System.Windows.Forms.Label() @@ -381,19 +314,15 @@ Partial Class frmProfileDesigner Me.SplitContainer_Profilzuordnung2.Panel1.SuspendLayout() Me.SplitContainer_Profilzuordnung2.Panel2.SuspendLayout() Me.SplitContainer_Profilzuordnung2.SuspendLayout() - CType(Me.TBPROFILE_USERDataGridView, System.ComponentModel.ISupportInitialize).BeginInit() + CType(Me.gridAssignedUsers, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.TBPROFILE_USERBindingSource, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.DD_DMSLiteDataSet, System.ComponentModel.ISupportInitialize).BeginInit() - CType(Me.TBPROFILE_USERBindingNavigator, System.ComponentModel.ISupportInitialize).BeginInit() - Me.TBPROFILE_USERBindingNavigator.SuspendLayout() - Me.TabControlUser.SuspendLayout() - Me.TabPage7.SuspendLayout() - CType(Me.TBPM_USERDataGridView, System.ComponentModel.ISupportInitialize).BeginInit() + CType(Me.viewAssignedUsers, System.ComponentModel.ISupportInitialize).BeginInit() + Me.Panel1.SuspendLayout() + CType(Me.gridAvailableUsers, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.TBDD_USERBindingSource, System.ComponentModel.ISupportInitialize).BeginInit() - Me.TabPage8.SuspendLayout() - Me.GroupBox1.SuspendLayout() - CType(Me.TBDD_USERBindingNavigator, System.ComponentModel.ISupportInitialize).BeginInit() - Me.TBDD_USERBindingNavigator.SuspendLayout() + CType(Me.viewAvailableUsers, System.ComponentModel.ISupportInitialize).BeginInit() + Me.Panel2.SuspendLayout() CType(Me.TBPM_PROFILEBindingSource, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.TBPM_PROFILEBindingNavigator, System.ComponentModel.ISupportInitialize).BeginInit() Me.TBPM_PROFILEBindingNavigator.SuspendLayout() @@ -431,9 +360,8 @@ Partial Class frmProfileDesigner Me.SplitContainerProfilzuordnung.Panel1.SuspendLayout() Me.SplitContainerProfilzuordnung.Panel2.SuspendLayout() Me.SplitContainerProfilzuordnung.SuspendLayout() - CType(Me.TBPM_PROFILE_ZuordnungDataGridView, System.ComponentModel.ISupportInitialize).BeginInit() - CType(Me.TBPM_PROFILE_ZuordnungBindingNavigator, System.ComponentModel.ISupportInitialize).BeginInit() - Me.TBPM_PROFILE_ZuordnungBindingNavigator.SuspendLayout() + CType(Me.gridAvailableProfiles, System.ComponentModel.ISupportInitialize).BeginInit() + CType(Me.viewAvailableProfiles, System.ComponentModel.ISupportInitialize).BeginInit() Me.TabPage3.SuspendLayout() CType(Me.TBPM_KONFIGURATIONBindingSource, System.ComponentModel.ISupportInitialize).BeginInit() Me.grpbxEmail.SuspendLayout() @@ -463,73 +391,23 @@ Partial Class frmProfileDesigner 'SplitContainer_Profilzuordnung2.Panel1 ' resources.ApplyResources(Me.SplitContainer_Profilzuordnung2.Panel1, "SplitContainer_Profilzuordnung2.Panel1") - Me.SplitContainer_Profilzuordnung2.Panel1.Controls.Add(Me.TBPROFILE_USERDataGridView) - Me.SplitContainer_Profilzuordnung2.Panel1.Controls.Add(Me.TBPROFILE_USERBindingNavigator) + Me.SplitContainer_Profilzuordnung2.Panel1.Controls.Add(Me.gridAssignedUsers) + Me.SplitContainer_Profilzuordnung2.Panel1.Controls.Add(Me.Panel1) ' 'SplitContainer_Profilzuordnung2.Panel2 ' resources.ApplyResources(Me.SplitContainer_Profilzuordnung2.Panel2, "SplitContainer_Profilzuordnung2.Panel2") - Me.SplitContainer_Profilzuordnung2.Panel2.Controls.Add(Me.TabControlUser) - Me.SplitContainer_Profilzuordnung2.Panel2.Controls.Add(Me.TBDD_USERBindingNavigator) + Me.SplitContainer_Profilzuordnung2.Panel2.Controls.Add(Me.gridAvailableUsers) + Me.SplitContainer_Profilzuordnung2.Panel2.Controls.Add(Me.Panel2) ' - 'TBPROFILE_USERDataGridView + 'gridAssignedUsers ' - Me.TBPROFILE_USERDataGridView.AllowDrop = True - Me.TBPROFILE_USERDataGridView.AllowUserToAddRows = False - Me.TBPROFILE_USERDataGridView.AllowUserToDeleteRows = False - DataGridViewCellStyle1.BackColor = System.Drawing.Color.Yellow - Me.TBPROFILE_USERDataGridView.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1 - Me.TBPROFILE_USERDataGridView.AutoGenerateColumns = False - Me.TBPROFILE_USERDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize - Me.TBPROFILE_USERDataGridView.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.DataGridViewTextBoxColumn4, Me.DataGridViewTextBoxColumn5, Me.DataGridViewTextBoxColumn6, Me.DataGridViewTextBoxColumn7, Me.DataGridViewTextBoxColumn8, Me.DataGridViewTextBoxColumn9}) - Me.TBPROFILE_USERDataGridView.DataSource = Me.TBPROFILE_USERBindingSource - resources.ApplyResources(Me.TBPROFILE_USERDataGridView, "TBPROFILE_USERDataGridView") - Me.TBPROFILE_USERDataGridView.MultiSelect = False - Me.TBPROFILE_USERDataGridView.Name = "TBPROFILE_USERDataGridView" - Me.TBPROFILE_USERDataGridView.ReadOnly = True - ' - 'DataGridViewTextBoxColumn4 - ' - Me.DataGridViewTextBoxColumn4.DataPropertyName = "GUID" - Me.DataGridViewTextBoxColumn4.Frozen = True - resources.ApplyResources(Me.DataGridViewTextBoxColumn4, "DataGridViewTextBoxColumn4") - Me.DataGridViewTextBoxColumn4.Name = "DataGridViewTextBoxColumn4" - Me.DataGridViewTextBoxColumn4.ReadOnly = True - ' - 'DataGridViewTextBoxColumn5 - ' - Me.DataGridViewTextBoxColumn5.DataPropertyName = "PRENAME" - resources.ApplyResources(Me.DataGridViewTextBoxColumn5, "DataGridViewTextBoxColumn5") - Me.DataGridViewTextBoxColumn5.Name = "DataGridViewTextBoxColumn5" - Me.DataGridViewTextBoxColumn5.ReadOnly = True - ' - 'DataGridViewTextBoxColumn6 - ' - Me.DataGridViewTextBoxColumn6.DataPropertyName = "NAME" - resources.ApplyResources(Me.DataGridViewTextBoxColumn6, "DataGridViewTextBoxColumn6") - Me.DataGridViewTextBoxColumn6.Name = "DataGridViewTextBoxColumn6" - Me.DataGridViewTextBoxColumn6.ReadOnly = True - ' - 'DataGridViewTextBoxColumn7 - ' - Me.DataGridViewTextBoxColumn7.DataPropertyName = "USERNAME" - resources.ApplyResources(Me.DataGridViewTextBoxColumn7, "DataGridViewTextBoxColumn7") - Me.DataGridViewTextBoxColumn7.Name = "DataGridViewTextBoxColumn7" - Me.DataGridViewTextBoxColumn7.ReadOnly = True - ' - 'DataGridViewTextBoxColumn8 - ' - Me.DataGridViewTextBoxColumn8.DataPropertyName = "ADDED_WHO" - resources.ApplyResources(Me.DataGridViewTextBoxColumn8, "DataGridViewTextBoxColumn8") - Me.DataGridViewTextBoxColumn8.Name = "DataGridViewTextBoxColumn8" - Me.DataGridViewTextBoxColumn8.ReadOnly = True - ' - 'DataGridViewTextBoxColumn9 - ' - Me.DataGridViewTextBoxColumn9.DataPropertyName = "ADDED_WHEN" - resources.ApplyResources(Me.DataGridViewTextBoxColumn9, "DataGridViewTextBoxColumn9") - Me.DataGridViewTextBoxColumn9.Name = "DataGridViewTextBoxColumn9" - Me.DataGridViewTextBoxColumn9.ReadOnly = True + Me.gridAssignedUsers.AllowDrop = True + Me.gridAssignedUsers.DataSource = Me.TBPROFILE_USERBindingSource + resources.ApplyResources(Me.gridAssignedUsers, "gridAssignedUsers") + Me.gridAssignedUsers.MainView = Me.viewAssignedUsers + Me.gridAssignedUsers.Name = "gridAssignedUsers" + Me.gridAssignedUsers.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.viewAssignedUsers}) ' 'TBPROFILE_USERBindingSource ' @@ -541,441 +419,159 @@ Partial Class frmProfileDesigner Me.DD_DMSLiteDataSet.DataSetName = "DD_DMSLiteDataSet" Me.DD_DMSLiteDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema ' - 'TBPROFILE_USERBindingNavigator + 'viewAssignedUsers ' - Me.TBPROFILE_USERBindingNavigator.AddNewItem = Nothing - Me.TBPROFILE_USERBindingNavigator.BindingSource = Me.TBPROFILE_USERBindingSource - Me.TBPROFILE_USERBindingNavigator.CountItem = Me.BindingNavigatorCountItem2 - Me.TBPROFILE_USERBindingNavigator.CountItemFormat = "von {0} zugeordneten Usern" - Me.TBPROFILE_USERBindingNavigator.DeleteItem = Me.BindingNavigatorDeleteItem - Me.TBPROFILE_USERBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem2, Me.BindingNavigatorMovePreviousItem2, Me.BindingNavigatorSeparator6, Me.BindingNavigatorPositionItem2, Me.BindingNavigatorCountItem2, Me.BindingNavigatorSeparator7, Me.BindingNavigatorMoveNextItem2, Me.BindingNavigatorMoveLastItem2, Me.BindingNavigatorSeparator8, Me.BindingNavigatorDeleteItem, Me.ToolStripSeparator8, Me.ToolStripLabel2}) - resources.ApplyResources(Me.TBPROFILE_USERBindingNavigator, "TBPROFILE_USERBindingNavigator") - Me.TBPROFILE_USERBindingNavigator.MoveFirstItem = Me.BindingNavigatorMoveFirstItem2 - Me.TBPROFILE_USERBindingNavigator.MoveLastItem = Me.BindingNavigatorMoveLastItem2 - Me.TBPROFILE_USERBindingNavigator.MoveNextItem = Me.BindingNavigatorMoveNextItem2 - Me.TBPROFILE_USERBindingNavigator.MovePreviousItem = Me.BindingNavigatorMovePreviousItem2 - Me.TBPROFILE_USERBindingNavigator.Name = "TBPROFILE_USERBindingNavigator" - Me.TBPROFILE_USERBindingNavigator.PositionItem = Me.BindingNavigatorPositionItem2 + Me.viewAssignedUsers.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colGUID2, Me.colPRENAME1, Me.colNAME3, Me.colUSERNAME1, Me.colADDED_WHO1, Me.colADDED_WHEN1}) + Me.viewAssignedUsers.GridControl = Me.gridAssignedUsers + Me.viewAssignedUsers.Name = "viewAssignedUsers" + Me.viewAssignedUsers.OptionsBehavior.Editable = False + Me.viewAssignedUsers.OptionsBehavior.ReadOnly = True + Me.viewAssignedUsers.OptionsView.ShowAutoFilterRow = True + Me.viewAssignedUsers.OptionsView.ShowGroupPanel = False ' - 'BindingNavigatorCountItem2 + 'colGUID2 ' - Me.BindingNavigatorCountItem2.Name = "BindingNavigatorCountItem2" - resources.ApplyResources(Me.BindingNavigatorCountItem2, "BindingNavigatorCountItem2") + Me.colGUID2.FieldName = "GUID" + Me.colGUID2.Name = "colGUID2" + resources.ApplyResources(Me.colGUID2, "colGUID2") ' - 'BindingNavigatorDeleteItem + 'colPRENAME1 ' - Me.BindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image - resources.ApplyResources(Me.BindingNavigatorDeleteItem, "BindingNavigatorDeleteItem") - Me.BindingNavigatorDeleteItem.Name = "BindingNavigatorDeleteItem" + Me.colPRENAME1.FieldName = "PRENAME" + Me.colPRENAME1.Name = "colPRENAME1" + resources.ApplyResources(Me.colPRENAME1, "colPRENAME1") ' - 'BindingNavigatorMoveFirstItem2 + 'colNAME3 ' - Me.BindingNavigatorMoveFirstItem2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image - resources.ApplyResources(Me.BindingNavigatorMoveFirstItem2, "BindingNavigatorMoveFirstItem2") - Me.BindingNavigatorMoveFirstItem2.Name = "BindingNavigatorMoveFirstItem2" + Me.colNAME3.FieldName = "NAME" + Me.colNAME3.Name = "colNAME3" + resources.ApplyResources(Me.colNAME3, "colNAME3") ' - 'BindingNavigatorMovePreviousItem2 + 'colUSERNAME1 ' - Me.BindingNavigatorMovePreviousItem2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image - resources.ApplyResources(Me.BindingNavigatorMovePreviousItem2, "BindingNavigatorMovePreviousItem2") - Me.BindingNavigatorMovePreviousItem2.Name = "BindingNavigatorMovePreviousItem2" + Me.colUSERNAME1.FieldName = "USERNAME" + Me.colUSERNAME1.Name = "colUSERNAME1" + resources.ApplyResources(Me.colUSERNAME1, "colUSERNAME1") ' - 'BindingNavigatorSeparator6 + 'colADDED_WHO1 ' - Me.BindingNavigatorSeparator6.Name = "BindingNavigatorSeparator6" - resources.ApplyResources(Me.BindingNavigatorSeparator6, "BindingNavigatorSeparator6") + Me.colADDED_WHO1.FieldName = "ADDED_WHO" + Me.colADDED_WHO1.Name = "colADDED_WHO1" + resources.ApplyResources(Me.colADDED_WHO1, "colADDED_WHO1") ' - 'BindingNavigatorPositionItem2 + 'colADDED_WHEN1 ' - resources.ApplyResources(Me.BindingNavigatorPositionItem2, "BindingNavigatorPositionItem2") - Me.BindingNavigatorPositionItem2.Name = "BindingNavigatorPositionItem2" + Me.colADDED_WHEN1.FieldName = "ADDED_WHEN" + Me.colADDED_WHEN1.Name = "colADDED_WHEN1" + resources.ApplyResources(Me.colADDED_WHEN1, "colADDED_WHEN1") ' - 'BindingNavigatorSeparator7 + 'Panel1 ' - Me.BindingNavigatorSeparator7.Name = "BindingNavigatorSeparator7" - resources.ApplyResources(Me.BindingNavigatorSeparator7, "BindingNavigatorSeparator7") + Me.Panel1.Controls.Add(Me.btnUserManager) + Me.Panel1.Controls.Add(Me.Label20) + resources.ApplyResources(Me.Panel1, "Panel1") + Me.Panel1.Name = "Panel1" ' - 'BindingNavigatorMoveNextItem2 + 'btnUserManager ' - Me.BindingNavigatorMoveNextItem2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image - resources.ApplyResources(Me.BindingNavigatorMoveNextItem2, "BindingNavigatorMoveNextItem2") - Me.BindingNavigatorMoveNextItem2.Name = "BindingNavigatorMoveNextItem2" + Me.btnUserManager.Image = Global.DD_PM_WINDREAM.My.Resources.Resources.user + resources.ApplyResources(Me.btnUserManager, "btnUserManager") + Me.btnUserManager.Name = "btnUserManager" + Me.btnUserManager.UseVisualStyleBackColor = True ' - 'BindingNavigatorMoveLastItem2 + 'Label20 ' - Me.BindingNavigatorMoveLastItem2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image - resources.ApplyResources(Me.BindingNavigatorMoveLastItem2, "BindingNavigatorMoveLastItem2") - Me.BindingNavigatorMoveLastItem2.Name = "BindingNavigatorMoveLastItem2" + resources.ApplyResources(Me.Label20, "Label20") + Me.Label20.Name = "Label20" ' - 'BindingNavigatorSeparator8 + 'gridAvailableUsers ' - Me.BindingNavigatorSeparator8.Name = "BindingNavigatorSeparator8" - resources.ApplyResources(Me.BindingNavigatorSeparator8, "BindingNavigatorSeparator8") - ' - 'ToolStripSeparator8 - ' - Me.ToolStripSeparator8.Name = "ToolStripSeparator8" - resources.ApplyResources(Me.ToolStripSeparator8, "ToolStripSeparator8") - ' - 'ToolStripLabel2 - ' - Me.ToolStripLabel2.ForeColor = System.Drawing.Color.Crimson - Me.ToolStripLabel2.Name = "ToolStripLabel2" - resources.ApplyResources(Me.ToolStripLabel2, "ToolStripLabel2") - ' - 'TabControlUser - ' - Me.TabControlUser.Controls.Add(Me.TabPage7) - Me.TabControlUser.Controls.Add(Me.TabPage8) - resources.ApplyResources(Me.TabControlUser, "TabControlUser") - Me.TabControlUser.Name = "TabControlUser" - Me.TabControlUser.SelectedIndex = 0 - ' - 'TabPage7 - ' - Me.TabPage7.Controls.Add(Me.TBPM_USERDataGridView) - resources.ApplyResources(Me.TabPage7, "TabPage7") - Me.TabPage7.Name = "TabPage7" - Me.TabPage7.UseVisualStyleBackColor = True - ' - 'TBPM_USERDataGridView - ' - Me.TBPM_USERDataGridView.AllowUserToAddRows = False - Me.TBPM_USERDataGridView.AllowUserToDeleteRows = False - DataGridViewCellStyle2.BackColor = System.Drawing.Color.Aqua - Me.TBPM_USERDataGridView.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2 - Me.TBPM_USERDataGridView.AutoGenerateColumns = False - Me.TBPM_USERDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize - Me.TBPM_USERDataGridView.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.DataGridViewTextBoxColumn3, Me.DataGridViewTextBoxColumn10, Me.DataGridViewTextBoxColumn11, Me.DataGridViewTextBoxColumn12, Me.DataGridViewTextBoxColumn13, Me.DataGridViewTextBoxColumn18, Me.DataGridViewTextBoxColumn19, Me.DataGridViewTextBoxColumn20, Me.DataGridViewTextBoxColumn21}) - Me.TBPM_USERDataGridView.DataSource = Me.TBDD_USERBindingSource - resources.ApplyResources(Me.TBPM_USERDataGridView, "TBPM_USERDataGridView") - Me.TBPM_USERDataGridView.MultiSelect = False - Me.TBPM_USERDataGridView.Name = "TBPM_USERDataGridView" - Me.TBPM_USERDataGridView.ReadOnly = True - ' - 'DataGridViewTextBoxColumn3 - ' - Me.DataGridViewTextBoxColumn3.DataPropertyName = "GUID" - Me.DataGridViewTextBoxColumn3.Frozen = True - resources.ApplyResources(Me.DataGridViewTextBoxColumn3, "DataGridViewTextBoxColumn3") - Me.DataGridViewTextBoxColumn3.Name = "DataGridViewTextBoxColumn3" - Me.DataGridViewTextBoxColumn3.ReadOnly = True - ' - 'DataGridViewTextBoxColumn10 - ' - Me.DataGridViewTextBoxColumn10.DataPropertyName = "PRENAME" - resources.ApplyResources(Me.DataGridViewTextBoxColumn10, "DataGridViewTextBoxColumn10") - Me.DataGridViewTextBoxColumn10.Name = "DataGridViewTextBoxColumn10" - Me.DataGridViewTextBoxColumn10.ReadOnly = True - ' - 'DataGridViewTextBoxColumn11 - ' - Me.DataGridViewTextBoxColumn11.DataPropertyName = "NAME" - resources.ApplyResources(Me.DataGridViewTextBoxColumn11, "DataGridViewTextBoxColumn11") - Me.DataGridViewTextBoxColumn11.Name = "DataGridViewTextBoxColumn11" - Me.DataGridViewTextBoxColumn11.ReadOnly = True - ' - 'DataGridViewTextBoxColumn12 - ' - Me.DataGridViewTextBoxColumn12.DataPropertyName = "USERNAME" - resources.ApplyResources(Me.DataGridViewTextBoxColumn12, "DataGridViewTextBoxColumn12") - Me.DataGridViewTextBoxColumn12.Name = "DataGridViewTextBoxColumn12" - Me.DataGridViewTextBoxColumn12.ReadOnly = True - ' - 'DataGridViewTextBoxColumn13 - ' - Me.DataGridViewTextBoxColumn13.DataPropertyName = "EMAIL" - resources.ApplyResources(Me.DataGridViewTextBoxColumn13, "DataGridViewTextBoxColumn13") - Me.DataGridViewTextBoxColumn13.Name = "DataGridViewTextBoxColumn13" - Me.DataGridViewTextBoxColumn13.ReadOnly = True - ' - 'DataGridViewTextBoxColumn18 - ' - Me.DataGridViewTextBoxColumn18.DataPropertyName = "ADDED_WHO" - resources.ApplyResources(Me.DataGridViewTextBoxColumn18, "DataGridViewTextBoxColumn18") - Me.DataGridViewTextBoxColumn18.Name = "DataGridViewTextBoxColumn18" - Me.DataGridViewTextBoxColumn18.ReadOnly = True - ' - 'DataGridViewTextBoxColumn19 - ' - Me.DataGridViewTextBoxColumn19.DataPropertyName = "ADDED_WHEN" - resources.ApplyResources(Me.DataGridViewTextBoxColumn19, "DataGridViewTextBoxColumn19") - Me.DataGridViewTextBoxColumn19.Name = "DataGridViewTextBoxColumn19" - Me.DataGridViewTextBoxColumn19.ReadOnly = True - ' - 'DataGridViewTextBoxColumn20 - ' - Me.DataGridViewTextBoxColumn20.DataPropertyName = "CHANGED_WHO" - resources.ApplyResources(Me.DataGridViewTextBoxColumn20, "DataGridViewTextBoxColumn20") - Me.DataGridViewTextBoxColumn20.Name = "DataGridViewTextBoxColumn20" - Me.DataGridViewTextBoxColumn20.ReadOnly = True - ' - 'DataGridViewTextBoxColumn21 - ' - Me.DataGridViewTextBoxColumn21.DataPropertyName = "CHANGED_WHEN" - resources.ApplyResources(Me.DataGridViewTextBoxColumn21, "DataGridViewTextBoxColumn21") - Me.DataGridViewTextBoxColumn21.Name = "DataGridViewTextBoxColumn21" - Me.DataGridViewTextBoxColumn21.ReadOnly = True + Me.gridAvailableUsers.AllowDrop = True + Me.gridAvailableUsers.DataSource = Me.TBDD_USERBindingSource + resources.ApplyResources(Me.gridAvailableUsers, "gridAvailableUsers") + Me.gridAvailableUsers.MainView = Me.viewAvailableUsers + Me.gridAvailableUsers.Name = "gridAvailableUsers" + Me.gridAvailableUsers.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.viewAvailableUsers}) ' 'TBDD_USERBindingSource ' Me.TBDD_USERBindingSource.DataMember = "TBDD_USER" Me.TBDD_USERBindingSource.DataSource = Me.DD_DMSLiteDataSet ' - 'TabPage8 + 'viewAvailableUsers ' - resources.ApplyResources(Me.TabPage8, "TabPage8") - Me.TabPage8.Controls.Add(Me.GroupBox1) - Me.TabPage8.Controls.Add(Me.lblSaveUser) - Me.TabPage8.Controls.Add(CHANGED_WHENLabel1) - Me.TabPage8.Controls.Add(Me.CHANGED_WHENTextBox1) - Me.TabPage8.Controls.Add(CHANGED_WHOLabel1) - Me.TabPage8.Controls.Add(Me.CHANGED_WHOTextBox1) - Me.TabPage8.Controls.Add(ADDED_WHENLabel1) - Me.TabPage8.Controls.Add(Me.ADDED_WHENTextBox1) - Me.TabPage8.Controls.Add(ADDED_WHOLabel1) - Me.TabPage8.Controls.Add(Me.ADDED_WHOTextBox1) - Me.TabPage8.Controls.Add(EMAILLabel) - Me.TabPage8.Controls.Add(Me.EMAILTextBox) - Me.TabPage8.Controls.Add(USERNAMELabel) - Me.TabPage8.Controls.Add(Me.USERNAMETextBox) - Me.TabPage8.Controls.Add(NAMELabel1) - Me.TabPage8.Controls.Add(Me.NAMETextBox1) - Me.TabPage8.Controls.Add(PRENAMELabel) - Me.TabPage8.Controls.Add(Me.PRENAMETextBox) - Me.TabPage8.Controls.Add(GUIDLabel1) - Me.TabPage8.Controls.Add(Me.GUIDTextBox) - Me.TabPage8.Name = "TabPage8" - Me.TabPage8.UseVisualStyleBackColor = True + Me.viewAvailableUsers.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colGUID1, Me.colPRENAME, Me.colNAME2, Me.colUSERNAME, Me.colEMAIL, Me.colADDED_WHO, Me.colADDED_WHEN, Me.colCHANGED_WHO, Me.colCHANGED_WHEN}) + Me.viewAvailableUsers.GridControl = Me.gridAvailableUsers + Me.viewAvailableUsers.Name = "viewAvailableUsers" + Me.viewAvailableUsers.OptionsBehavior.Editable = False + Me.viewAvailableUsers.OptionsBehavior.ReadOnly = True + Me.viewAvailableUsers.OptionsView.ShowAutoFilterRow = True + Me.viewAvailableUsers.OptionsView.ShowGroupPanel = False ' - 'GroupBox1 + 'colGUID1 ' - Me.GroupBox1.Controls.Add(Me.RIGHT_FILE_DELETECheckBox) - resources.ApplyResources(Me.GroupBox1, "GroupBox1") - Me.GroupBox1.Name = "GroupBox1" - Me.GroupBox1.TabStop = False + Me.colGUID1.FieldName = "GUID" + Me.colGUID1.Name = "colGUID1" + resources.ApplyResources(Me.colGUID1, "colGUID1") ' - 'RIGHT_FILE_DELETECheckBox + 'colPRENAME ' - resources.ApplyResources(Me.RIGHT_FILE_DELETECheckBox, "RIGHT_FILE_DELETECheckBox") - Me.RIGHT_FILE_DELETECheckBox.Name = "RIGHT_FILE_DELETECheckBox" - Me.RIGHT_FILE_DELETECheckBox.UseVisualStyleBackColor = True + Me.colPRENAME.FieldName = "PRENAME" + Me.colPRENAME.Name = "colPRENAME" + resources.ApplyResources(Me.colPRENAME, "colPRENAME") ' - 'lblSaveUser + 'colNAME2 ' - resources.ApplyResources(Me.lblSaveUser, "lblSaveUser") - Me.lblSaveUser.BackColor = System.Drawing.Color.Yellow - Me.lblSaveUser.Name = "lblSaveUser" + Me.colNAME2.FieldName = "NAME" + Me.colNAME2.Name = "colNAME2" + resources.ApplyResources(Me.colNAME2, "colNAME2") ' - 'CHANGED_WHENLabel1 + 'colUSERNAME ' - resources.ApplyResources(CHANGED_WHENLabel1, "CHANGED_WHENLabel1") - CHANGED_WHENLabel1.Name = "CHANGED_WHENLabel1" + Me.colUSERNAME.FieldName = "USERNAME" + Me.colUSERNAME.Name = "colUSERNAME" + resources.ApplyResources(Me.colUSERNAME, "colUSERNAME") ' - 'CHANGED_WHENTextBox1 + 'colEMAIL ' - Me.CHANGED_WHENTextBox1.BackColor = System.Drawing.Color.WhiteSmoke - Me.CHANGED_WHENTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "CHANGED_WHEN", True)) - resources.ApplyResources(Me.CHANGED_WHENTextBox1, "CHANGED_WHENTextBox1") - Me.CHANGED_WHENTextBox1.Name = "CHANGED_WHENTextBox1" + Me.colEMAIL.FieldName = "EMAIL" + Me.colEMAIL.Name = "colEMAIL" + resources.ApplyResources(Me.colEMAIL, "colEMAIL") ' - 'CHANGED_WHOLabel1 + 'colADDED_WHO ' - resources.ApplyResources(CHANGED_WHOLabel1, "CHANGED_WHOLabel1") - CHANGED_WHOLabel1.Name = "CHANGED_WHOLabel1" + Me.colADDED_WHO.FieldName = "ADDED_WHO" + Me.colADDED_WHO.Name = "colADDED_WHO" + resources.ApplyResources(Me.colADDED_WHO, "colADDED_WHO") ' - 'CHANGED_WHOTextBox1 + 'colADDED_WHEN ' - Me.CHANGED_WHOTextBox1.BackColor = System.Drawing.Color.WhiteSmoke - Me.CHANGED_WHOTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "CHANGED_WHO", True)) - resources.ApplyResources(Me.CHANGED_WHOTextBox1, "CHANGED_WHOTextBox1") - Me.CHANGED_WHOTextBox1.Name = "CHANGED_WHOTextBox1" + Me.colADDED_WHEN.FieldName = "ADDED_WHEN" + Me.colADDED_WHEN.Name = "colADDED_WHEN" + resources.ApplyResources(Me.colADDED_WHEN, "colADDED_WHEN") ' - 'ADDED_WHENLabel1 + 'colCHANGED_WHO ' - resources.ApplyResources(ADDED_WHENLabel1, "ADDED_WHENLabel1") - ADDED_WHENLabel1.Name = "ADDED_WHENLabel1" + Me.colCHANGED_WHO.FieldName = "CHANGED_WHO" + Me.colCHANGED_WHO.Name = "colCHANGED_WHO" + resources.ApplyResources(Me.colCHANGED_WHO, "colCHANGED_WHO") ' - 'ADDED_WHENTextBox1 + 'colCHANGED_WHEN ' - Me.ADDED_WHENTextBox1.BackColor = System.Drawing.Color.WhiteSmoke - Me.ADDED_WHENTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "ADDED_WHEN", True)) - resources.ApplyResources(Me.ADDED_WHENTextBox1, "ADDED_WHENTextBox1") - Me.ADDED_WHENTextBox1.Name = "ADDED_WHENTextBox1" + Me.colCHANGED_WHEN.FieldName = "CHANGED_WHEN" + Me.colCHANGED_WHEN.Name = "colCHANGED_WHEN" + resources.ApplyResources(Me.colCHANGED_WHEN, "colCHANGED_WHEN") ' - 'ADDED_WHOLabel1 + 'Panel2 ' - resources.ApplyResources(ADDED_WHOLabel1, "ADDED_WHOLabel1") - ADDED_WHOLabel1.Name = "ADDED_WHOLabel1" + Me.Panel2.Controls.Add(Me.Label19) + resources.ApplyResources(Me.Panel2, "Panel2") + Me.Panel2.Name = "Panel2" ' - 'ADDED_WHOTextBox1 + 'Label19 ' - Me.ADDED_WHOTextBox1.BackColor = System.Drawing.Color.WhiteSmoke - Me.ADDED_WHOTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "ADDED_WHO", True)) - resources.ApplyResources(Me.ADDED_WHOTextBox1, "ADDED_WHOTextBox1") - Me.ADDED_WHOTextBox1.Name = "ADDED_WHOTextBox1" - ' - 'EMAILLabel - ' - resources.ApplyResources(EMAILLabel, "EMAILLabel") - EMAILLabel.Name = "EMAILLabel" - ' - 'EMAILTextBox - ' - Me.EMAILTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "EMAIL", True)) - resources.ApplyResources(Me.EMAILTextBox, "EMAILTextBox") - Me.EMAILTextBox.Name = "EMAILTextBox" - ' - 'USERNAMELabel - ' - resources.ApplyResources(USERNAMELabel, "USERNAMELabel") - USERNAMELabel.Name = "USERNAMELabel" - ' - 'USERNAMETextBox - ' - Me.USERNAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "USERNAME", True)) - resources.ApplyResources(Me.USERNAMETextBox, "USERNAMETextBox") - Me.USERNAMETextBox.Name = "USERNAMETextBox" - ' - 'NAMELabel1 - ' - resources.ApplyResources(NAMELabel1, "NAMELabel1") - NAMELabel1.Name = "NAMELabel1" - ' - 'NAMETextBox1 - ' - Me.NAMETextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "NAME", True)) - resources.ApplyResources(Me.NAMETextBox1, "NAMETextBox1") - Me.NAMETextBox1.Name = "NAMETextBox1" - ' - 'PRENAMELabel - ' - resources.ApplyResources(PRENAMELabel, "PRENAMELabel") - PRENAMELabel.Name = "PRENAMELabel" - ' - 'PRENAMETextBox - ' - Me.PRENAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "PRENAME", True)) - resources.ApplyResources(Me.PRENAMETextBox, "PRENAMETextBox") - Me.PRENAMETextBox.Name = "PRENAMETextBox" - ' - 'GUIDLabel1 - ' - resources.ApplyResources(GUIDLabel1, "GUIDLabel1") - GUIDLabel1.Name = "GUIDLabel1" - ' - 'GUIDTextBox - ' - Me.GUIDTextBox.BackColor = System.Drawing.Color.WhiteSmoke - Me.GUIDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "GUID", True)) - resources.ApplyResources(Me.GUIDTextBox, "GUIDTextBox") - Me.GUIDTextBox.Name = "GUIDTextBox" - ' - 'TBDD_USERBindingNavigator - ' - Me.TBDD_USERBindingNavigator.AddNewItem = Me.ToolStripButton5 - Me.TBDD_USERBindingNavigator.BindingSource = Me.TBDD_USERBindingSource - Me.TBDD_USERBindingNavigator.CountItem = Me.ToolStripLabel3 - Me.TBDD_USERBindingNavigator.CountItemFormat = "von {0} Usern" - Me.TBDD_USERBindingNavigator.DeleteItem = Me.ToolStripButton6 - Me.TBDD_USERBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripButton7, Me.ToolStripButton8, Me.ToolStripSeparator5, Me.ToolStripTextBox2, Me.ToolStripLabel3, Me.ToolStripSeparator6, Me.ToolStripButton9, Me.ToolStripButton10, Me.ToolStripSeparator7, Me.ToolStripButton5, Me.ToolStripButton6, Me.ToolStripButton11, Me.tsbtnworkUser, ToolStripButton4, Me.ToolStripButton12}) - resources.ApplyResources(Me.TBDD_USERBindingNavigator, "TBDD_USERBindingNavigator") - Me.TBDD_USERBindingNavigator.MoveFirstItem = Me.ToolStripButton7 - Me.TBDD_USERBindingNavigator.MoveLastItem = Me.ToolStripButton10 - Me.TBDD_USERBindingNavigator.MoveNextItem = Me.ToolStripButton9 - Me.TBDD_USERBindingNavigator.MovePreviousItem = Me.ToolStripButton8 - Me.TBDD_USERBindingNavigator.Name = "TBDD_USERBindingNavigator" - Me.TBDD_USERBindingNavigator.PositionItem = Me.ToolStripTextBox2 - ' - 'ToolStripButton5 - ' - Me.ToolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image - resources.ApplyResources(Me.ToolStripButton5, "ToolStripButton5") - Me.ToolStripButton5.Name = "ToolStripButton5" - ' - 'ToolStripLabel3 - ' - Me.ToolStripLabel3.Name = "ToolStripLabel3" - resources.ApplyResources(Me.ToolStripLabel3, "ToolStripLabel3") - ' - 'ToolStripButton6 - ' - Me.ToolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image - resources.ApplyResources(Me.ToolStripButton6, "ToolStripButton6") - Me.ToolStripButton6.Name = "ToolStripButton6" - ' - 'ToolStripButton7 - ' - Me.ToolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image - resources.ApplyResources(Me.ToolStripButton7, "ToolStripButton7") - Me.ToolStripButton7.Name = "ToolStripButton7" - ' - 'ToolStripButton8 - ' - Me.ToolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image - resources.ApplyResources(Me.ToolStripButton8, "ToolStripButton8") - Me.ToolStripButton8.Name = "ToolStripButton8" - ' - 'ToolStripSeparator5 - ' - Me.ToolStripSeparator5.Name = "ToolStripSeparator5" - resources.ApplyResources(Me.ToolStripSeparator5, "ToolStripSeparator5") - ' - 'ToolStripTextBox2 - ' - resources.ApplyResources(Me.ToolStripTextBox2, "ToolStripTextBox2") - Me.ToolStripTextBox2.Name = "ToolStripTextBox2" - ' - 'ToolStripSeparator6 - ' - Me.ToolStripSeparator6.Name = "ToolStripSeparator6" - resources.ApplyResources(Me.ToolStripSeparator6, "ToolStripSeparator6") - ' - 'ToolStripButton9 - ' - Me.ToolStripButton9.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image - resources.ApplyResources(Me.ToolStripButton9, "ToolStripButton9") - Me.ToolStripButton9.Name = "ToolStripButton9" - ' - 'ToolStripButton10 - ' - Me.ToolStripButton10.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image - resources.ApplyResources(Me.ToolStripButton10, "ToolStripButton10") - Me.ToolStripButton10.Name = "ToolStripButton10" - ' - 'ToolStripSeparator7 - ' - Me.ToolStripSeparator7.Name = "ToolStripSeparator7" - resources.ApplyResources(Me.ToolStripSeparator7, "ToolStripSeparator7") - ' - 'ToolStripButton11 - ' - Me.ToolStripButton11.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image - Me.ToolStripButton11.Image = Global.DD_PM_WINDREAM.My.Resources.Resources.save - resources.ApplyResources(Me.ToolStripButton11, "ToolStripButton11") - Me.ToolStripButton11.Name = "ToolStripButton11" - ' - 'tsbtnworkUser - ' - Me.tsbtnworkUser.BackColor = System.Drawing.Color.Transparent - Me.tsbtnworkUser.Image = Global.DD_PM_WINDREAM.My.Resources.Resources.user - resources.ApplyResources(Me.tsbtnworkUser, "tsbtnworkUser") - Me.tsbtnworkUser.Name = "tsbtnworkUser" - ' - 'ToolStripButton4 - ' - ToolStripButton4.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right - ToolStripButton4.Image = Global.DD_PM_WINDREAM.My.Resources.Resources.user_red - resources.ApplyResources(ToolStripButton4, "ToolStripButton4") - ToolStripButton4.Name = "ToolStripButton4" - AddHandler ToolStripButton4.Click, AddressOf Me.ToolStripButton4_Click - ' - 'ToolStripButton12 - ' - Me.ToolStripButton12.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image - Me.ToolStripButton12.Image = Global.DD_PM_WINDREAM.My.Resources.Resources.refresh_16xLG - resources.ApplyResources(Me.ToolStripButton12, "ToolStripButton12") - Me.ToolStripButton12.Name = "ToolStripButton12" + resources.ApplyResources(Me.Label19, "Label19") + Me.Label19.Name = "Label19" ' 'NAMELabel ' @@ -2123,107 +1719,48 @@ Partial Class frmProfileDesigner ' 'SplitContainerProfilzuordnung.Panel1 ' - Me.SplitContainerProfilzuordnung.Panel1.Controls.Add(Me.TBPM_PROFILE_ZuordnungDataGridView) - Me.SplitContainerProfilzuordnung.Panel1.Controls.Add(Me.TBPM_PROFILE_ZuordnungBindingNavigator) + Me.SplitContainerProfilzuordnung.Panel1.Controls.Add(Me.gridAvailableProfiles) + Me.SplitContainerProfilzuordnung.Panel1.Controls.Add(Me.Label21) ' 'SplitContainerProfilzuordnung.Panel2 ' Me.SplitContainerProfilzuordnung.Panel2.Controls.Add(Me.SplitContainer_Profilzuordnung2) ' - 'TBPM_PROFILE_ZuordnungDataGridView + 'gridAvailableProfiles ' - Me.TBPM_PROFILE_ZuordnungDataGridView.AllowUserToAddRows = False - Me.TBPM_PROFILE_ZuordnungDataGridView.AllowUserToDeleteRows = False - Me.TBPM_PROFILE_ZuordnungDataGridView.AllowUserToOrderColumns = True - DataGridViewCellStyle3.BackColor = System.Drawing.Color.Cyan - Me.TBPM_PROFILE_ZuordnungDataGridView.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle3 - Me.TBPM_PROFILE_ZuordnungDataGridView.AutoGenerateColumns = False - Me.TBPM_PROFILE_ZuordnungDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize - Me.TBPM_PROFILE_ZuordnungDataGridView.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.DataGridViewTextBoxColumn1, Me.DataGridViewTextBoxColumn2}) - Me.TBPM_PROFILE_ZuordnungDataGridView.DataSource = Me.TBPM_PROFILEBindingSource - resources.ApplyResources(Me.TBPM_PROFILE_ZuordnungDataGridView, "TBPM_PROFILE_ZuordnungDataGridView") - Me.TBPM_PROFILE_ZuordnungDataGridView.MultiSelect = False - Me.TBPM_PROFILE_ZuordnungDataGridView.Name = "TBPM_PROFILE_ZuordnungDataGridView" - Me.TBPM_PROFILE_ZuordnungDataGridView.ReadOnly = True + Me.gridAvailableProfiles.DataSource = Me.TBPM_PROFILEBindingSource + resources.ApplyResources(Me.gridAvailableProfiles, "gridAvailableProfiles") + Me.gridAvailableProfiles.MainView = Me.viewAvailableProfiles + Me.gridAvailableProfiles.Name = "gridAvailableProfiles" + Me.gridAvailableProfiles.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.viewAvailableProfiles}) ' - 'DataGridViewTextBoxColumn1 + 'viewAvailableProfiles ' - Me.DataGridViewTextBoxColumn1.DataPropertyName = "GUID" - resources.ApplyResources(Me.DataGridViewTextBoxColumn1, "DataGridViewTextBoxColumn1") - Me.DataGridViewTextBoxColumn1.Name = "DataGridViewTextBoxColumn1" - Me.DataGridViewTextBoxColumn1.ReadOnly = True + Me.viewAvailableProfiles.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colGUID, Me.colNAME1}) + Me.viewAvailableProfiles.GridControl = Me.gridAvailableProfiles + Me.viewAvailableProfiles.Name = "viewAvailableProfiles" + Me.viewAvailableProfiles.OptionsBehavior.Editable = False + Me.viewAvailableProfiles.OptionsBehavior.ReadOnly = True + Me.viewAvailableProfiles.OptionsDetail.EnableMasterViewMode = False + Me.viewAvailableProfiles.OptionsView.ShowAutoFilterRow = True + Me.viewAvailableProfiles.OptionsView.ShowGroupPanel = False ' - 'DataGridViewTextBoxColumn2 + 'colGUID ' - Me.DataGridViewTextBoxColumn2.DataPropertyName = "NAME" - resources.ApplyResources(Me.DataGridViewTextBoxColumn2, "DataGridViewTextBoxColumn2") - Me.DataGridViewTextBoxColumn2.Name = "DataGridViewTextBoxColumn2" - Me.DataGridViewTextBoxColumn2.ReadOnly = True + Me.colGUID.FieldName = "GUID" + Me.colGUID.Name = "colGUID" + resources.ApplyResources(Me.colGUID, "colGUID") ' - 'TBPM_PROFILE_ZuordnungBindingNavigator + 'colNAME1 ' - Me.TBPM_PROFILE_ZuordnungBindingNavigator.AddNewItem = Nothing - Me.TBPM_PROFILE_ZuordnungBindingNavigator.BindingSource = Me.TBPM_PROFILEBindingSource - Me.TBPM_PROFILE_ZuordnungBindingNavigator.CountItem = Me.BindingNavigatorCountItem1 - Me.TBPM_PROFILE_ZuordnungBindingNavigator.CountItemFormat = "von {0} Profilen" - Me.TBPM_PROFILE_ZuordnungBindingNavigator.DeleteItem = Nothing - Me.TBPM_PROFILE_ZuordnungBindingNavigator.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}) - resources.ApplyResources(Me.TBPM_PROFILE_ZuordnungBindingNavigator, "TBPM_PROFILE_ZuordnungBindingNavigator") - Me.TBPM_PROFILE_ZuordnungBindingNavigator.MoveFirstItem = Me.BindingNavigatorMoveFirstItem1 - Me.TBPM_PROFILE_ZuordnungBindingNavigator.MoveLastItem = Me.BindingNavigatorMoveLastItem1 - Me.TBPM_PROFILE_ZuordnungBindingNavigator.MoveNextItem = Me.BindingNavigatorMoveNextItem1 - Me.TBPM_PROFILE_ZuordnungBindingNavigator.MovePreviousItem = Me.BindingNavigatorMovePreviousItem1 - Me.TBPM_PROFILE_ZuordnungBindingNavigator.Name = "TBPM_PROFILE_ZuordnungBindingNavigator" - Me.TBPM_PROFILE_ZuordnungBindingNavigator.PositionItem = Me.BindingNavigatorPositionItem1 + Me.colNAME1.FieldName = "NAME" + Me.colNAME1.Name = "colNAME1" + resources.ApplyResources(Me.colNAME1, "colNAME1") ' - 'BindingNavigatorCountItem1 + 'Label21 ' - Me.BindingNavigatorCountItem1.Name = "BindingNavigatorCountItem1" - resources.ApplyResources(Me.BindingNavigatorCountItem1, "BindingNavigatorCountItem1") - ' - '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") + resources.ApplyResources(Me.Label21, "Label21") + Me.Label21.Name = "Label21" ' 'TabPage3 ' @@ -2422,8 +1959,8 @@ Partial Class frmProfileDesigner 'TBPM_ERROR_LOGDataGridView ' Me.TBPM_ERROR_LOGDataGridView.AllowUserToAddRows = False - DataGridViewCellStyle4.BackColor = System.Drawing.Color.Cyan - Me.TBPM_ERROR_LOGDataGridView.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle4 + DataGridViewCellStyle1.BackColor = System.Drawing.Color.Cyan + Me.TBPM_ERROR_LOGDataGridView.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1 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}) @@ -2610,27 +2147,18 @@ Partial Class frmProfileDesigner Me.Controls.Add(Me.StatusStrip1) Me.Name = "frmProfileDesigner" Me.SplitContainer_Profilzuordnung2.Panel1.ResumeLayout(False) - Me.SplitContainer_Profilzuordnung2.Panel1.PerformLayout() Me.SplitContainer_Profilzuordnung2.Panel2.ResumeLayout(False) - Me.SplitContainer_Profilzuordnung2.Panel2.PerformLayout() CType(Me.SplitContainer_Profilzuordnung2, System.ComponentModel.ISupportInitialize).EndInit() Me.SplitContainer_Profilzuordnung2.ResumeLayout(False) - CType(Me.TBPROFILE_USERDataGridView, System.ComponentModel.ISupportInitialize).EndInit() + CType(Me.gridAssignedUsers, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.TBPROFILE_USERBindingSource, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.DD_DMSLiteDataSet, System.ComponentModel.ISupportInitialize).EndInit() - CType(Me.TBPROFILE_USERBindingNavigator, System.ComponentModel.ISupportInitialize).EndInit() - Me.TBPROFILE_USERBindingNavigator.ResumeLayout(False) - Me.TBPROFILE_USERBindingNavigator.PerformLayout() - Me.TabControlUser.ResumeLayout(False) - Me.TabPage7.ResumeLayout(False) - CType(Me.TBPM_USERDataGridView, System.ComponentModel.ISupportInitialize).EndInit() + CType(Me.viewAssignedUsers, System.ComponentModel.ISupportInitialize).EndInit() + Me.Panel1.ResumeLayout(False) + CType(Me.gridAvailableUsers, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.TBDD_USERBindingSource, System.ComponentModel.ISupportInitialize).EndInit() - Me.TabPage8.ResumeLayout(False) - Me.TabPage8.PerformLayout() - Me.GroupBox1.ResumeLayout(False) - CType(Me.TBDD_USERBindingNavigator, System.ComponentModel.ISupportInitialize).EndInit() - Me.TBDD_USERBindingNavigator.ResumeLayout(False) - Me.TBDD_USERBindingNavigator.PerformLayout() + CType(Me.viewAvailableUsers, System.ComponentModel.ISupportInitialize).EndInit() + Me.Panel2.ResumeLayout(False) CType(Me.TBPM_PROFILEBindingSource, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.TBPM_PROFILEBindingNavigator, System.ComponentModel.ISupportInitialize).EndInit() Me.TBPM_PROFILEBindingNavigator.ResumeLayout(False) @@ -2678,14 +2206,11 @@ Partial Class frmProfileDesigner CType(Me.viewColumns, System.ComponentModel.ISupportInitialize).EndInit() Me.TabPage2.ResumeLayout(False) Me.SplitContainerProfilzuordnung.Panel1.ResumeLayout(False) - Me.SplitContainerProfilzuordnung.Panel1.PerformLayout() Me.SplitContainerProfilzuordnung.Panel2.ResumeLayout(False) CType(Me.SplitContainerProfilzuordnung, System.ComponentModel.ISupportInitialize).EndInit() Me.SplitContainerProfilzuordnung.ResumeLayout(False) - CType(Me.TBPM_PROFILE_ZuordnungDataGridView, System.ComponentModel.ISupportInitialize).EndInit() - CType(Me.TBPM_PROFILE_ZuordnungBindingNavigator, System.ComponentModel.ISupportInitialize).EndInit() - Me.TBPM_PROFILE_ZuordnungBindingNavigator.ResumeLayout(False) - Me.TBPM_PROFILE_ZuordnungBindingNavigator.PerformLayout() + CType(Me.gridAvailableProfiles, System.ComponentModel.ISupportInitialize).EndInit() + CType(Me.viewAvailableProfiles, System.ComponentModel.ISupportInitialize).EndInit() Me.TabPage3.ResumeLayout(False) Me.TabPage3.PerformLayout() CType(Me.TBPM_KONFIGURATIONBindingSource, System.ComponentModel.ISupportInitialize).EndInit() @@ -2762,58 +2287,11 @@ Partial Class frmProfileDesigner Friend WithEvents TabPage1 As System.Windows.Forms.TabPage Friend WithEvents TabPage2 As System.Windows.Forms.TabPage Friend WithEvents SplitContainerProfilzuordnung As System.Windows.Forms.SplitContainer - Friend WithEvents TBPM_PROFILE_ZuordnungDataGridView As System.Windows.Forms.DataGridView - Friend WithEvents TBPM_PROFILE_ZuordnungBindingNavigator As System.Windows.Forms.BindingNavigator - Friend WithEvents BindingNavigatorCountItem1 As System.Windows.Forms.ToolStripLabel - Friend WithEvents BindingNavigatorMoveFirstItem1 As System.Windows.Forms.ToolStripButton - Friend WithEvents BindingNavigatorMovePreviousItem1 As System.Windows.Forms.ToolStripButton - Friend WithEvents BindingNavigatorSeparator3 As System.Windows.Forms.ToolStripSeparator - Friend WithEvents BindingNavigatorPositionItem1 As System.Windows.Forms.ToolStripTextBox - Friend WithEvents BindingNavigatorSeparator4 As System.Windows.Forms.ToolStripSeparator - Friend WithEvents BindingNavigatorMoveNextItem1 As System.Windows.Forms.ToolStripButton - Friend WithEvents BindingNavigatorMoveLastItem1 As System.Windows.Forms.ToolStripButton - Friend WithEvents BindingNavigatorSeparator5 As System.Windows.Forms.ToolStripSeparator Friend WithEvents SplitContainer_Profilzuordnung2 As System.Windows.Forms.SplitContainer - Friend WithEvents TBPROFILE_USERBindingNavigator As System.Windows.Forms.BindingNavigator - Friend WithEvents BindingNavigatorCountItem2 As System.Windows.Forms.ToolStripLabel - Friend WithEvents BindingNavigatorDeleteItem As System.Windows.Forms.ToolStripButton - Friend WithEvents BindingNavigatorMoveFirstItem2 As System.Windows.Forms.ToolStripButton - Friend WithEvents BindingNavigatorMovePreviousItem2 As System.Windows.Forms.ToolStripButton - Friend WithEvents BindingNavigatorSeparator6 As System.Windows.Forms.ToolStripSeparator - Friend WithEvents BindingNavigatorPositionItem2 As System.Windows.Forms.ToolStripTextBox - Friend WithEvents BindingNavigatorSeparator7 As System.Windows.Forms.ToolStripSeparator - Friend WithEvents BindingNavigatorMoveNextItem2 As System.Windows.Forms.ToolStripButton - Friend WithEvents BindingNavigatorMoveLastItem2 As System.Windows.Forms.ToolStripButton - Friend WithEvents BindingNavigatorSeparator8 As System.Windows.Forms.ToolStripSeparator Friend WithEvents TBPROFILE_USERBindingSource As System.Windows.Forms.BindingSource Friend WithEvents TBPROFILE_USERTableAdapter As DD_PM_WINDREAM.DD_DMSLiteDataSetTableAdapters.TBPROFILE_USERTableAdapter - Friend WithEvents DataGridViewTextBoxColumn1 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents DataGridViewTextBoxColumn2 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents TBPROFILE_USERDataGridView As System.Windows.Forms.DataGridView - Friend WithEvents ToolStripLabel2 As System.Windows.Forms.ToolStripLabel Friend WithEvents TBDD_USERBindingSource As System.Windows.Forms.BindingSource Friend WithEvents TBPM_USERTableAdapter As DD_PM_WINDREAM.DD_DMSLiteDataSetTableAdapters.TBDD_USERTableAdapter - Friend WithEvents TBPM_USERDataGridView As System.Windows.Forms.DataGridView - Friend WithEvents TBDD_USERBindingNavigator As System.Windows.Forms.BindingNavigator - Friend WithEvents ToolStripButton5 As System.Windows.Forms.ToolStripButton - Friend WithEvents ToolStripLabel3 As System.Windows.Forms.ToolStripLabel - Friend WithEvents ToolStripButton6 As System.Windows.Forms.ToolStripButton - Friend WithEvents ToolStripButton7 As System.Windows.Forms.ToolStripButton - Friend WithEvents ToolStripButton8 As System.Windows.Forms.ToolStripButton - Friend WithEvents ToolStripSeparator5 As System.Windows.Forms.ToolStripSeparator - Friend WithEvents ToolStripTextBox2 As System.Windows.Forms.ToolStripTextBox - Friend WithEvents ToolStripSeparator6 As System.Windows.Forms.ToolStripSeparator - Friend WithEvents ToolStripButton9 As System.Windows.Forms.ToolStripButton - Friend WithEvents ToolStripButton10 As System.Windows.Forms.ToolStripButton - Friend WithEvents ToolStripSeparator7 As System.Windows.Forms.ToolStripSeparator - Friend WithEvents ToolStripButton11 As System.Windows.Forms.ToolStripButton - Friend WithEvents DataGridViewTextBoxColumn4 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents DataGridViewTextBoxColumn5 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents DataGridViewTextBoxColumn6 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents DataGridViewTextBoxColumn7 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents DataGridViewTextBoxColumn8 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents DataGridViewTextBoxColumn9 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents ToolStripSeparator8 As System.Windows.Forms.ToolStripSeparator Friend WithEvents TabPage3 As System.Windows.Forms.TabPage Friend WithEvents btnlicensemanager_open As System.Windows.Forms.Button Friend WithEvents grpbxEmail As System.Windows.Forms.GroupBox @@ -2828,7 +2306,6 @@ Partial Class frmProfileDesigner Friend WithEvents Label3 As System.Windows.Forms.Label Friend WithEvents pnlMain As System.Windows.Forms.Panel Friend WithEvents SORT_BY_LATESTCheckBox As System.Windows.Forms.CheckBox - Friend WithEvents tsbtnworkUser As System.Windows.Forms.ToolStripButton Friend WithEvents TabPage4 As System.Windows.Forms.TabPage Friend WithEvents TBPM_ERROR_LOGBindingNavigator As System.Windows.Forms.BindingNavigator Friend WithEvents BindingNavigatorCountItem3 As System.Windows.Forms.ToolStripLabel @@ -2914,35 +2391,11 @@ Partial Class frmProfileDesigner Friend WithEvents DataGridViewTextBoxColumn23 As System.Windows.Forms.DataGridViewTextBoxColumn Friend WithEvents DataGridViewTextBoxColumn24 As System.Windows.Forms.DataGridViewTextBoxColumn Friend WithEvents DataGridViewTextBoxColumn25 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents ToolStripButton12 As System.Windows.Forms.ToolStripButton Friend WithEvents Button2 As System.Windows.Forms.Button Friend WithEvents Label13 As System.Windows.Forms.Label Friend WithEvents lblSaveFinalIndex As System.Windows.Forms.Label Friend WithEvents Button3 As System.Windows.Forms.Button - Friend WithEvents TabControlUser As System.Windows.Forms.TabControl - Friend WithEvents TabPage7 As System.Windows.Forms.TabPage - Friend WithEvents TabPage8 As System.Windows.Forms.TabPage - Friend WithEvents CHANGED_WHENTextBox1 As System.Windows.Forms.TextBox - Friend WithEvents CHANGED_WHOTextBox1 As System.Windows.Forms.TextBox - Friend WithEvents ADDED_WHENTextBox1 As System.Windows.Forms.TextBox - Friend WithEvents ADDED_WHOTextBox1 As System.Windows.Forms.TextBox - Friend WithEvents EMAILTextBox As System.Windows.Forms.TextBox - Friend WithEvents USERNAMETextBox As System.Windows.Forms.TextBox - Friend WithEvents NAMETextBox1 As System.Windows.Forms.TextBox - Friend WithEvents PRENAMETextBox As System.Windows.Forms.TextBox - Friend WithEvents GUIDTextBox As System.Windows.Forms.TextBox - Friend WithEvents lblSaveUser As System.Windows.Forms.Label - Friend WithEvents DataGridViewTextBoxColumn3 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents DataGridViewTextBoxColumn10 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents DataGridViewTextBoxColumn11 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents DataGridViewTextBoxColumn12 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents DataGridViewTextBoxColumn13 As System.Windows.Forms.DataGridViewTextBoxColumn Friend WithEvents DataGridViewCheckBoxColumn2 As System.Windows.Forms.DataGridViewCheckBoxColumn - Friend WithEvents DataGridViewTextBoxColumn18 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents DataGridViewTextBoxColumn19 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents DataGridViewTextBoxColumn20 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents DataGridViewTextBoxColumn21 As System.Windows.Forms.DataGridViewTextBoxColumn - Friend WithEvents RIGHT_FILE_DELETECheckBox As System.Windows.Forms.CheckBox Friend WithEvents GridControl1 As DevExpress.XtraGrid.GridControl Friend WithEvents GridView1 As DevExpress.XtraGrid.Views.Grid.GridView Friend WithEvents colNAME As DevExpress.XtraGrid.Columns.GridColumn @@ -2968,7 +2421,6 @@ Partial Class frmProfileDesigner Friend WithEvents ANNOTATE_ALL_WORK_HISTORY_ENTRIESCheckBox As CheckBox Friend WithEvents SQL_VIEWTextBox As TextBox Friend WithEvents WORK_HISTORY_ENTRYTextBox As TextBox - Friend WithEvents GroupBox1 As GroupBox Friend WithEvents tabCustomColumns As TabPage Friend WithEvents Label18 As Label Friend WithEvents Label17 As Label @@ -2990,4 +2442,33 @@ Partial Class frmProfileDesigner Friend WithEvents gridColumns As DevExpress.XtraGrid.GridControl Friend WithEvents viewColumns As DevExpress.XtraGrid.Views.Grid.GridView Friend WithEvents ComboBox1 As ComboBox + Friend WithEvents gridAvailableProfiles As DevExpress.XtraGrid.GridControl + Friend WithEvents viewAvailableProfiles As DevExpress.XtraGrid.Views.Grid.GridView + Friend WithEvents colGUID As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colNAME1 As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents gridAssignedUsers As DevExpress.XtraGrid.GridControl + Friend WithEvents viewAssignedUsers As DevExpress.XtraGrid.Views.Grid.GridView + Friend WithEvents colGUID2 As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colPRENAME1 As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colNAME3 As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colUSERNAME1 As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colADDED_WHO1 As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colADDED_WHEN1 As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents gridAvailableUsers As DevExpress.XtraGrid.GridControl + Friend WithEvents viewAvailableUsers As DevExpress.XtraGrid.Views.Grid.GridView + Friend WithEvents colGUID1 As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colPRENAME As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colNAME2 As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colUSERNAME As DevExpress.XtraGrid.Columns.GridColumn + Friend WithEvents colEMAIL 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 Panel1 As Panel + Friend WithEvents btnUserManager As Button + Friend WithEvents Label20 As Label + Friend WithEvents Panel2 As Panel + Friend WithEvents Label19 As Label + Friend WithEvents Label21 As Label End Class diff --git a/app/DD_PM_WINDREAM/frmProfileDesigner.resx b/app/DD_PM_WINDREAM/frmProfileDesigner.resx index cc2b448..d68e245 100644 --- a/app/DD_PM_WINDREAM/frmProfileDesigner.resx +++ b/app/DD_PM_WINDREAM/frmProfileDesigner.resx @@ -162,221 +162,151 @@ True - - ID - - - 40 - - - Vorname - - - Nachname - - - User - - - Erstellt wer - - - Wann - 833, 95 17, 17 - + Fill - + 0, 25 - + + True + + + 0 + + + True + + + 1 + + + True + + + 2 + + + True + + + 3 + + + True + + + 4 + + + True + + + 5 + + 914, 287 - - 2 + + 3 - - TBPROFILE_USERDataGridView + + gridAssignedUsers - - System.Windows.Forms.DataGridView, 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 - + SplitContainer_Profilzuordnung2.Panel1 - + 0 - - 344, 95 - - - 153, 22 + + MiddleLeft - - von {0} zugeordneten Usern + + 748, 0 - - Die Gesamtanzahl der Elemente. + + 165, 23 - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC - DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC - rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV - i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG - 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG - QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX - bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII= - + + 1 - - True + + Benutzer verwalten - - 23, 22 + + btnUserManager - - Löschen + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 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= - + + Panel1 - - 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 + + Left - - 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 - - - 6, 25 - - - 285, 22 - - - Ziehen Sie neue User per Drag Drop in diesen Bereich - - + 0, 0 - + + 194, 25 + + + 0 + + + Zugeordnete Benutzer: + + + MiddleLeft + + + Label20 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Panel1 + + + 1 + + + Top + + + 0, 0 + + 914, 25 - - 2 + + 4 - - BindingNavigator2 + + Panel1 - - TBPROFILE_USERBindingNavigator + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + SplitContainer_Profilzuordnung2.Panel1 - + 1 @@ -394,977 +324,139 @@ True - - ID - - - Vorname - - - Nachname - - - UserName - - - Email - - - Erstellt wer - - - Erstellt wann - - - Geändert wer - - - Geändert wann - 17, 82 - + Fill - - 3, 3 - - - 900, 210 - - - 3 - - - TBPM_USERDataGridView - - - System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage7 - - - 0 - - - 4, 25 - - - 3, 3, 3, 3 - - - 906, 216 - - - 0 - - - User -Übersicht - - - TabPage7 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabControlUser - - - 0 - - - True - - - Tahoma, 9pt - - - 6, 16 - - - 136, 24 - - - 79 - - - Recht Datei löschen - - - RIGHT_FILE_DELETECheckBox - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 0 - - - 520, 48 - - - 200, 87 - - - 81 - - - Rechte für User: - - - GroupBox1 - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 0 - - - True - - - Tahoma, 9pt, style=Italic - - - NoControl - - - 517, 161 - - - 143, 14 - - - 78 - - - Änderungen gespeichert - - - False - - - lblSaveUser - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 1 - - - False - - - True - - - Tahoma, 9pt, style=Italic - - - 265, 94 - - - 96, 14 - - - 17 - - - Geändert wann: - - - CHANGED_WHENLabel1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 2 - - - False - - - Tahoma, 9pt, style=Italic - - - 268, 113 - - - 190, 22 - - - 18 - - - CHANGED_WHENTextBox1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 3 - - - False - - - True - - - Tahoma, 9pt, style=Italic - - - 265, 139 - - - 87, 14 - - - 15 - - - Geändert wer: - - - CHANGED_WHOLabel1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 4 - - - False - - - Tahoma, 9pt, style=Italic - - - 268, 158 - - - 190, 22 - - - 16 - - - CHANGED_WHOTextBox1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 5 - - - False - - - True - - - Tahoma, 9pt, style=Italic - - - 68, 94 - - - 78, 14 - - - 13 - - - Erstellt wann - - - ADDED_WHENLabel1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 6 - - - False - - - Tahoma, 9pt, style=Italic - - - 71, 113 - - - 188, 22 - - - 14 - - - ADDED_WHENTextBox1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 7 - - - False - - - True - - - Tahoma, 9pt, style=Italic - - - 68, 139 - - - 73, 14 - - - 11 - - - Erstellt wer: - - - ADDED_WHOLabel1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 8 - - - False - - - Tahoma, 9pt, style=Italic - - - 71, 158 - - - 188, 22 - - - 12 - - - ADDED_WHOTextBox1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 9 - - - False - - - True - - - Tahoma, 9pt - - - 68, 48 - - - 38, 14 - - - 8 - - - Email: - - - EMAILLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 10 - - - Tahoma, 9pt - - - 71, 66 - - - 443, 22 - - - 9 - - - EMAILTextBox - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 11 - - - False - - - True - - - Tahoma, 9pt - - - 517, 3 - - - 65, 14 - - - 6 - - - Username: - - - USERNAMELabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 12 - - - Tahoma, 9pt - - - 520, 22 - - - 240, 22 - - - 7 - - - USERNAMETextBox - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 13 - - - False - - - True - - - Tahoma, 9pt - - - 265, 3 - - - 68, 14 - - - 4 - - - Nachname: - - - NAMELabel1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 14 - - - Tahoma, 9pt - - - 268, 22 - - - 246, 22 - - - 5 - - - NAMETextBox1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 15 - - - False - - - True - - - Tahoma, 9pt - - - 68, 3 - - - 60, 14 - - - 2 - - - Vorname: - - - PRENAMELabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 16 - - - Tahoma, 9pt - - - 71, 22 - - - 188, 22 - - - 3 - - - PRENAMETextBox - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 17 - - - False - - - True - - - Tahoma, 9pt, style=Italic - - - 6, 3 - - - 23, 14 - - - 0 - - - ID: - - - GUIDLabel1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 18 - - - False - - - Tahoma, 9pt, style=Italic - - - 9, 22 - - - 53, 22 - - - 1 - - - GUIDTextBox - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage8 - - - 19 - - - 4, 25 - - - 3, 3, 3, 3 - - - 906, 216 - - - 1 - - - User - Detail - - - TabPage8 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabControlUser - - - 1 - - - Fill - - + 0, 25 - - 914, 245 + + True - - 4 - - - TabControlUser - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SplitContainer_Profilzuordnung2.Panel2 - - + 0 - - 570, 56 - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAAUpJREFUOE9jGLzg7gL2/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== - - - + True - - 23, 22 + + 1 - - Neu hinzufügen - - - 80, 22 - - - von {0} Usern - - - Die Gesamtanzahl der Elemente. - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC - DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC - rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV - i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG - 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG - QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX - bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII= - - - + True - - 23, 22 + + 2 - - Löschen - - - - 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= - - - - 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 - - - Magenta - - - 23, 22 - - - Speichern - - - MiddleLeft - - - Magenta - - - 145, 22 - - - User-Daten bearbeiten - - - MiddleRight - - - False - - - Magenta - - - 134, 22 - - - AD-User hinzufügen - - - Magenta - - - 23, 22 - - - Refresh - - - 0, 0 - - - 914, 25 - - + 3 - - BindingNavigator3 + + True - - TBDD_USERBindingNavigator + + 4 - - System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - + + 5 + + + True + + + 6 + + + True + + + 7 + + + True + + + 8 + + + 914, 245 + + + 5 + + + gridAvailableUsers + + + DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a + + SplitContainer_Profilzuordnung2.Panel2 - + + 0 + + + Left + + + 0, 0 + + + 194, 25 + + + 0 + + + Verfügbare Benutzer: + + + MiddleLeft + + + Label19 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Panel2 + + + 0 + + + Top + + + 0, 0 + + + 914, 25 + + + 6 + + + Panel2 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer_Profilzuordnung2.Panel2 + + 1 @@ -3681,7 +2773,7 @@ der Wertänderungen nutzen wollen: 3, 3, 3, 3 - 1601, 597 + 1601, 639 0 @@ -3986,7 +3078,7 @@ der Wertänderungen nutzen wollen: 3, 3, 3, 3 - 1601, 600 + 1601, 642 1 @@ -4013,7 +3105,7 @@ der Wertänderungen nutzen wollen: 668, 161 - 1609, 626 + 1609, 668 90 @@ -4248,7 +3340,7 @@ der Wertänderungen nutzen wollen: 7, 133 - 599, 25 + 568, 25 76 @@ -4293,7 +3385,7 @@ der Wertänderungen nutzen wollen: 9, 161 - 653, 644 + 653, 686 75 @@ -4941,176 +4033,70 @@ der Wertänderungen nutzen wollen: 3, 3 - - ID - - - 70 - - - Profilname - - - 180 - - + Fill - + 0, 25 - - 348, 561 + + True - + + 0 + + + True + + 1 - - TBPM_PROFILE_ZuordnungDataGridView + + 348, 561 - - System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - + + gridAvailableProfiles + + + DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a + + SplitContainerProfilzuordnung.Panel1 - + 0 - - 782, 56 - - - 88, 22 + + Top - - von {0} Profilen - - - Die Gesamtanzahl der Elemente. - - - - 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= - - - - 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 - - + 0, 0 - + 348, 25 - - 0 + + 3 - - BindingNavigator1 + + Verfügbare Profile: - - TBPM_PROFILE_ZuordnungBindingNavigator + + MiddleLeft - - System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label21 - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + SplitContainerProfilzuordnung.Panel1 - + 1 @@ -6205,42 +5191,6 @@ der Wertänderungen nutzen wollen: Profil-Verwaltung - - DataGridViewTextBoxColumn4 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn5 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn6 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn7 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn8 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn9 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - TBPROFILE_USERBindingSource @@ -6253,131 +5203,47 @@ der Wertänderungen nutzen wollen: DD_PM_WINDREAM.DD_DMSLiteDataSet, DD_DMSLiteDataSet.Designer.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - - BindingNavigatorCountItem2 + + viewAssignedUsers - - System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - BindingNavigatorDeleteItem + + colGUID2 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - BindingNavigatorMoveFirstItem2 + + colPRENAME1 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - BindingNavigatorMovePreviousItem2 + + colNAME3 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - BindingNavigatorSeparator6 + + colUSERNAME1 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - BindingNavigatorPositionItem2 + + colADDED_WHO1 - - System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - BindingNavigatorSeparator7 + + colADDED_WHEN1 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BindingNavigatorMoveNextItem2 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BindingNavigatorMoveLastItem2 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BindingNavigatorSeparator8 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ToolStripSeparator8 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ToolStripLabel2 - - - System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn3 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn10 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn11 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn12 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn13 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn18 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn19 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn20 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DataGridViewTextBoxColumn21 - - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a TBDD_USERBindingSource @@ -6385,95 +5251,65 @@ der Wertänderungen nutzen wollen: System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ToolStripButton5 + + viewAvailableUsers - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - ToolStripLabel3 + + colGUID1 - - System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - ToolStripButton6 + + colPRENAME - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - ToolStripButton7 + + colNAME2 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - ToolStripButton8 + + colUSERNAME - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - ToolStripSeparator5 + + colEMAIL - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - ToolStripTextBox2 + + colADDED_WHO - - System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - ToolStripSeparator6 + + colADDED_WHEN - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - ToolStripButton9 + + colCHANGED_WHO - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - ToolStripButton10 + + colCHANGED_WHEN - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ToolStripSeparator7 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ToolStripButton11 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsbtnworkUser - - - System.Windows.Forms.ToolStripButton, 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 - - - ToolStripButton12 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a TableAdapterManager @@ -6841,71 +5677,23 @@ der Wertänderungen nutzen wollen: DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - DataGridViewTextBoxColumn1 + + viewAvailableProfiles - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - DataGridViewTextBoxColumn2 + + colGUID - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a - - BindingNavigatorCountItem1 + + colNAME1 - - System.Windows.Forms.ToolStripLabel, 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 + + DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.2, Version=15.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a TBPM_KONFIGURATIONBindingSource diff --git a/app/DD_PM_WINDREAM/frmProfileDesigner.vb b/app/DD_PM_WINDREAM/frmProfileDesigner.vb index 77d4dae..d12fa38 100644 --- a/app/DD_PM_WINDREAM/frmProfileDesigner.vb +++ b/app/DD_PM_WINDREAM/frmProfileDesigner.vb @@ -1,4 +1,6 @@ Imports System.Data.SqlClient +Imports DevExpress.XtraGrid +Imports DevExpress.XtraGrid.Views.Grid Public Class frmProfileDesigner Private _windreamPM As ClassPMWindream @@ -25,10 +27,6 @@ Public Class frmProfileDesigner End Sub Private Sub frmFormDesigner_Load(sender As Object, e As System.EventArgs) Handles Me.Load - 'TODO: Diese Codezeile lädt Daten in die Tabelle "DD_DMSLiteDataSet.TBDD_CONNECTION". Sie können sie bei Bedarf verschieben oder entfernen. - - 'TODO: Diese Codezeile lädt Daten in die Tabelle "DD_DMSLiteDataSet.TBPM_ERROR_LOG". Sie können sie bei Bedarf verschieben oder entfernen. - formloaded = False Try TBPM_KONFIGURATIONTableAdapter.Connection.ConnectionString = MyConnectionString @@ -43,6 +41,10 @@ Public Class frmProfileDesigner Me.TBDD_CONNECTIONTableAdapter.Connection.ConnectionString = MyConnectionString Me.TBDD_CONNECTIONTableAdapter.Fill(Me.DD_DMSLiteDataSet.TBDD_CONNECTION) Refresh_Profildaten() + + Dim dragDropManager = New ClassDragDrop() + dragDropManager.AddGridView(viewAssignedUsers) + dragDropManager.AddGridView(viewAvailableUsers) Catch ex As Exception MsgBox("Fehler bei Laden der Wertehilfen und Konfig-Daten: " & vbNewLine & ex.Message, MsgBoxStyle.Critical, "Achtung:") End Try @@ -109,7 +111,10 @@ Public Class frmProfileDesigner Me.TBPM_PROFILETableAdapter.Fill(Me.DD_DMSLiteDataSet.TBPM_PROFILE) Me.TBPM_TYPETableAdapter.Fill(Me.DD_DMSLiteDataSet.TBPM_TYPE) Me.TBPM_KONFIGURATIONTableAdapter.Fill(Me.DD_DMSLiteDataSet.TBPM_KONFIGURATION) - Me.TBPM_USERTableAdapter.Fill(Me.DD_DMSLiteDataSet.TBDD_USER) + + 'Me.TBPM_USERTableAdapter.Fill(Me.DD_DMSLiteDataSet.TBDD_USER) + TBPM_USERTableAdapter.FillByProfileId_NotAssigned(Me.DD_DMSLiteDataSet.TBDD_USER, PROFILGUIDTextBox.Text) + If tabctrl_Profilkonfig.SelectedIndex = 1 Then CURRENT_OBJECTTYPE = cmbObjekttypen.Text If TabControl2.SelectedIndex = 1 Then @@ -248,10 +253,14 @@ Public Class frmProfileDesigner Private Sub ADDED_WHOLabel_Click(sender As System.Object, e As System.EventArgs) End Sub - Dim zuordnungsprofil As Integer Sub FillProfile_User(ID As Integer) Try - Me.TBPROFILE_USERTableAdapter.Fill(Me.DD_DMSLiteDataSet.TBPROFILE_USER, ID) + Dim profileId As Integer = GetCurrentProfileId() + + If Not IsNothing(profileId) Then + TBPROFILE_USERTableAdapter.Fill(Me.DD_DMSLiteDataSet.TBPROFILE_USER, ID) + TBPM_USERTableAdapter.FillByProfileId_NotAssigned(DD_DMSLiteDataSet.TBDD_USER, profileId) + End If Catch ex As System.Exception MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler beim Laden der User zu Profil:") End Try @@ -261,107 +270,66 @@ Public Class frmProfileDesigner Private Sub TBPM_USERBindingSource_AddingNew(sender As System.Object, e As System.ComponentModel.AddingNewEventArgs) Handles TBDD_USERBindingSource.AddingNew DD_DMSLiteDataSet.TBDD_USER.ADDED_WHOColumn.DefaultValue = Environment.UserName End Sub - Private Sub TBPM_PROFILE_ZuordnungDataGridView_SelectionChanged(sender As Object, e As System.EventArgs) Handles TBPM_PROFILE_ZuordnungDataGridView.SelectionChanged - If TabControl1.SelectedIndex = 1 Then - If formloaded = True Then - Try - Dim i As Integer - i = TBPM_PROFILE_ZuordnungDataGridView.CurrentRow.Index - If TBPM_PROFILE_ZuordnungDataGridView.Item(0, i).Value Is Nothing = False Then - zuordnungsprofil = TBPM_PROFILE_ZuordnungDataGridView.Item(0, i).Value - FillProfile_User(zuordnungsprofil) - End If - Catch ex As Exception - End Try + Private Function GetCurrentProfileId() As Integer + Dim rowView As DataRowView = viewAvailableProfiles.GetFocusedRow() - End If + If IsNothing(rowView) = False Then + Dim profileId As Integer = rowView.Item("GUID") + + Return profileId + Else : Return Nothing End If - End Sub + End Function - Private Sub TBPM_USERDataGridView_Validating(sender As System.Object, e As System.ComponentModel.CancelEventArgs) Handles TBPM_USERDataGridView.Validating - Save_User() - End Sub + Private Sub viewAvailableProfiles_FocusedRowChanged(sender As Object, e As DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs) Handles viewAvailableProfiles.FocusedRowChanged + If TabControl1.SelectedIndex = 1 And formloaded Then + Try + Dim profileId As Integer = GetCurrentProfileId() - Private Sub ToolStripButton11_Click(sender As System.Object, e As System.EventArgs) Handles ToolStripButton11.Click - Save_User() - End Sub - Sub Save_User() - Try - TBDD_USERBindingSource.EndEdit() - If DD_DMSLiteDataSet.TBDD_USER.GetChanges Is Nothing = False Then - CHANGED_WHOTextBox1.Text = Environment.UserName - TBDD_USERBindingSource.EndEdit() - TBPM_USERTableAdapter.Update(DD_DMSLiteDataSet.TBDD_USER) - Me.lblSaveUser.Text = "Data saved successfully - " & Now.ToString - Me.lblSaveUser.Visible = True - Else - Me.lblSaveUser.Visible = False - End If - Catch ex As Exception - MsgBox("Fehler in Save_User:" & vbNewLine & ex.Message, MsgBoxStyle.Critical) - End Try - - End Sub - - Private Sub TBPM_USERDataGridView_MouseDown(sender As System.Object, e As System.Windows.Forms.MouseEventArgs) Handles TBPM_USERDataGridView.MouseDown - If tsbtnworkUser.Text <> "Bearbeitung aktiv" Then - Dim i As Integer - i = TBPM_USERDataGridView.CurrentRow.Index - If TBPM_USERDataGridView.Item(0, i).Value Is Nothing = False Then - Dim p As Integer - p = TBPM_PROFILE_ZuordnungDataGridView.CurrentRow.Index - If TBPM_PROFILE_ZuordnungDataGridView.Item(0, p).Value Is Nothing = False Then - zuordnungsprofil = TBPM_PROFILE_ZuordnungDataGridView.Item(0, p).Value - FillProfile_User(zuordnungsprofil) + If Not IsNothing(profileId) Then + FillProfile_User(profileId) End If - Me.TBPM_USERDataGridView.DoDragDrop(TBPM_USERDataGridView.Item(0, i).Value.ToString, DragDropEffects.Copy) - End If + Catch ex As Exception + MsgBox($"Error while calling FillProfile_User", MsgBoxStyle.Critical) + End Try End If - - 'Dim hit As DataGridView.HitTestInfo = Me.TBPM_USERDataGridView.HitTest(e.X, e.Y) - 'Dim guid = Me.TBPM_USERDataGridView.DoDragDrop(TBPM_USERDataGridView.Item(0, hit.RowIndex).Value, DragDropEffects.Copy) - 'If guid <> Nothing Then - ' Me.TBPM_USERDataGridView.DoDragDrop(guid.ToString, DragDropEffects.Copy) - ' Cursor = Cursors.Hand - 'End If End Sub - - Private Sub TBPROFILE_USERDataGridView_DragDrop(sender As Object, e As System.Windows.Forms.DragEventArgs) Handles TBPROFILE_USERDataGridView.DragDrop + Private Sub gridAssignedUsers_DragDrop(sender As Object, e As DragEventArgs) Handles gridAssignedUsers.DragDrop Try - Dim i As Integer - i = TBPM_PROFILE_ZuordnungDataGridView.CurrentRow.Index - If TBPM_PROFILE_ZuordnungDataGridView.Item(0, i).Value Is Nothing = False Then - TBPROFILE_USERTableAdapter.CMDInsert(zuordnungsprofil, e.Data.GetData(DataFormats.Text), Environment.UserName) - FillProfile_User(zuordnungsprofil) - End If + Dim data As String = e.Data.GetData(DataFormats.Text) + Dim userId As Integer = data.Split("|")(0) + + Dim profileId = GetCurrentProfileId() + TBPROFILE_USERTableAdapter.CMDInsert(profileId, userId, Environment.UserName) + FillProfile_User(profileId) Catch ex As Exception MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler beim Hinzufügen eines Users:") End Try - End Sub - Private Sub TBPROFILE_USERDataGridView_DragEnter(sender As Object, e As System.Windows.Forms.DragEventArgs) Handles TBPROFILE_USERDataGridView.DragEnter - ' Check the format of the data being dropped. - If (e.Data.GetDataPresent(DataFormats.Text)) Then - ' Display the copy cursor. - e.Effect = DragDropEffects.Copy - Else - ' Display the no-drop cursor. - e.Effect = DragDropEffects.None - End If + Private Sub gridAvailableUsers_DragDrop(sender As Object, e As DragEventArgs) + Try + Dim data As String = e.Data.GetData(DataFormats.Text) + Dim userId As Integer = data.Split("|")(0) + + Dim profileId = GetCurrentProfileId() + TBPROFILE_USERTableAdapter.cmdDelete(userId) + FillProfile_User(profileId) + Catch ex As Exception + MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler beim Entfernen eines Users:") + End Try End Sub - Private Sub BindingNavigatorDeleteItem_Click(sender As System.Object, e As System.EventArgs) Handles BindingNavigatorDeleteItem.Click - Dim i, ID As Integer + Private Sub BindingNavigatorDeleteItem_Click(sender As System.Object, e As System.EventArgs) + If viewAssignedUsers.GetSelectedRows().Length > 0 Then + For Each rowHandle In viewAssignedUsers.GetSelectedRows() + Dim rowView As DataRowView = viewAssignedUsers.GetRow(rowHandle) + Dim userId As Integer = rowView.Item("GUID") - i = TBPROFILE_USERDataGridView.CurrentRow.Index - ID = TBPROFILE_USERDataGridView.Item(0, i).Value - If ID > 0 Then - TBPROFILE_USERTableAdapter.cmdDelete(ID) - 'FillProfile_User(zuordnungsprofil) + TBPROFILE_USERTableAdapter.cmdDelete(userId) + Next End If - End Sub Private Sub btnlicensemanager_open_Click(sender As System.Object, e As System.EventArgs) Handles btnlicensemanager_open.Click @@ -388,22 +356,6 @@ Public Class frmProfileDesigner Save_Konfiguration() End Sub - Private Sub TBPROFILE_USERDataGridView_CellContentClick(sender As System.Object, e As System.Windows.Forms.DataGridViewCellEventArgs) Handles TBPROFILE_USERDataGridView.CellContentClick - - End Sub - - Private Sub tsbtnworkUser_Click(sender As System.Object, e As System.EventArgs) Handles tsbtnworkUser.Click - If tsbtnworkUser.Text = "User-Daten bearbeiten" Then - tsbtnworkUser.Text = "Bearbeitung aktiv" - 'tsbtnworkUser.BackColor = Color.OrangeRed - TabControlUser.SelectedIndex = 1 - Else - tsbtnworkUser.Text = "User-Daten bearbeiten" - 'tsbtnworkUser.BackColor = Color.Transparent - TabControlUser.SelectedIndex = 0 - End If - End Sub - Private Sub Refresh_Final_indexe() Try Me.lblSaveFinalIndex.Visible = False @@ -772,7 +724,7 @@ Public Class frmProfileDesigner Load_User() Cursor = Cursors.Default End Sub - Private Sub ToolStripButton12_Click(sender As Object, e As EventArgs) Handles ToolStripButton12.Click + Private Sub ToolStripButton12_Click(sender As Object, e As EventArgs) Load_User() End Sub Sub Load_User() @@ -829,32 +781,6 @@ Public Class frmProfileDesigner End If End Sub - Private Sub TBPROFILE_USERBindingSource_CurrentChanged(sender As Object, e As EventArgs) Handles TBPROFILE_USERBindingSource.CurrentChanged - Me.lblSaveUser.Visible = False - End Sub - - Private Sub ToolStripButton6_Click(sender As Object, e As EventArgs) Handles ToolStripButton6.Click - Dim i, ID As Integer - - i = TBPM_USERDataGridView.CurrentRow.Index - ID = TBPM_USERDataGridView.Item(0, i).Value - If ID > 0 Then - Dim result As MsgBoxResult - result = MessageBox.Show("Sind Sie sicher dass Sie diesen User löschen wollen?", "Bestätigung erforderlich:", MessageBoxButtons.YesNo, MessageBoxIcon.Question) - If result = MsgBoxResult.Yes Then - Try - Dim del As String = " EXEC PRPM_DELETE_USER " & ID - If ClassDatabase.Execute_non_Query(del, True) = True Then - Load_User() - Load_User() - End If - Catch ex As Exception - MsgBox(ex.Message, MsgBoxStyle.Exclamation, "Error in Delete User: ") - End Try - End If - End If - End Sub - Private Sub TabControlFinalIndices_SelectedIndexChanged(sender As Object, e As EventArgs) Handles TabControlFinalIndices.SelectedIndexChanged If TabControlFinalIndices.SelectedIndex = 1 Then Me.cmbIndexe2.Enabled = False @@ -945,41 +871,7 @@ Public Class frmProfileDesigner frmConnection.ShowDialog() End Sub - Private Sub RIGHT_FILE_DELETECheckBox_CheckedChanged(sender As Object, e As EventArgs) Handles RIGHT_FILE_DELETECheckBox.CheckedChanged - If GUIDTextBox.Text <> "" Then - Try - Dim sql = String.Format("SELECT RIGHT1 FROM TBDD_USER_MODULES WHERE USER_ID = {0} AND MODULE_ID = (SELECT GUID FROM TBDD_MODULES WHERE SHORT_NAME = 'PM')", GUIDTextBox.Text) - Dim RIGHT_FILE_DELETE = ClassDatabase.Execute_Scalar(sql, MyConnectionString) - If CBool(RIGHT_FILE_DELETE) <> RIGHT_FILE_DELETECheckBox.Checked Then - Dim upd = String.Format("UPDATE TBDD_USER_MODULES SET RIGHT1 = '{0}' WHERE USER_ID = {1} AND MODULE_ID = (SELECT GUID FROM TBDD_MODULES WHERE SHORT_NAME = 'PM')", RIGHT_FILE_DELETECheckBox.Checked, GUIDTextBox.Text) - If ClassDatabase.Execute_non_Query(upd) = True Then - lblSaveUser.Text = "Right was saved successfully - " & Now.ToString - lblSaveUser.Visible = False + Private Sub btnUserManager_Click(sender As Object, e As EventArgs) Handles btnUserManager.Click - End If - End If - - - Catch ex As Exception - MsgBox(ex.Message, MsgBoxStyle.Exclamation, "Unexpected Error in RIGHT_FILE_DELETECheckBox.CheckedChanged: ") - End Try - End If End Sub - - Private Sub TBDD_USERBindingSource_CurrentChanged(sender As Object, e As EventArgs) Handles TBDD_USERBindingSource.CurrentChanged - If GUIDTextBox.Text <> "" Then - Try - Dim sql = String.Format("SELECT RIGHT1 FROM TBDD_USER_MODULES WHERE USER_ID = {0} AND MODULE_ID = (SELECT GUID FROM TBDD_MODULES WHERE SHORT_NAME = 'PM')", GUIDTextBox.Text) - Dim RIGHT_FILE_DELETE = ClassDatabase.Execute_Scalar(sql, MyConnectionString) - RIGHT_FILE_DELETECheckBox.Checked = CBool(RIGHT_FILE_DELETE) - - - Catch ex As Exception - - MsgBox(ex.Message, MsgBoxStyle.Exclamation, "Unexpected Error in TBDD_USERBindingSource.CurrentChanged: ") - End Try - End If - End Sub - - End Class \ No newline at end of file diff --git a/app/Setup/Product.wxs b/app/Setup/Product.wxs index 19793a0..dac9270 100644 --- a/app/Setup/Product.wxs +++ b/app/Setup/Product.wxs @@ -164,7 +164,7 @@ - + DISABLE_DESKTOP_ICON