diff --git a/app/DD-Record-Organiser/ClassControlBuilder.vb b/app/DD-Record-Organiser/ClassControlBuilder.vb
index 2a7b184..d1c97d6 100644
--- a/app/DD-Record-Organiser/ClassControlBuilder.vb
+++ b/app/DD-Record-Organiser/ClassControlBuilder.vb
@@ -344,6 +344,15 @@ Public Class ClassControlBuilder
ControlLoader.Combobox.SetDataSource(DirectCast(dependingControl, CustomComboBox), dt)
Case "CheckedListBoxControl"
ControlLoader.CheckedListBox.SetDataSource(DirectCast(dependingControl, DevExpress.XtraEditors.CheckedListBoxControl), dt)
+ 'Hier werden nun evtl schon gesetzte Werte für CheckedListBox angehakt
+ ' Wert per LINQ aus DT_ControlValues suchen der zur aktuellen controlId passt
+ Dim values As List(Of Object) = (From row1 In CURRENT_CONTROL_VALUES.AsEnumerable()
+ Where row1.Item("CONTROL_ID") = dependingControlId
+ Select row1.Item("VALUE")).ToList()
+
+
+ ClassControlValues.LoadControlValue(CURRENT_RECORD_ID, CURRENT_PARENT_ID, dependingControlId, dependingControl, values, CURRENT_FORM_ID)
+
Case "Label"
If dt.Rows.Count = 1 Then
Try
@@ -513,6 +522,9 @@ Public Class ClassControlBuilder
ClassControlCommandsUI.UpdateMultipleValues(controlId, CURRENT_RECORD_ID, CONTROL_VALUE)
'End If
+ Dim SQL1 As String = String.Format("SELECT * FROM VWPMO_VALUES WHERE RECORD_ID = {0}", CURRENT_RECORD_ID)
+ Dim DT_ControlValues As DataTable = ClassDatabase.Return_Datatable(SQL1, "LoadControlValues")
+ CURRENT_CONTROL_VALUES = DT_ControlValues
Dim datatable As DataTable = ClassDatabase.Return_Datatable(SQL)
Dim datatable1 As DataTable = ClassDatabase.Return_Datatable(SQLenable)
@@ -524,7 +536,7 @@ Public Class ClassControlBuilder
Enable_Controls(control, datatable1, CONTROL_VALUE)
Dim values = New List(Of Object)(CONTROL_VALUE.Split(";").ToArray())
'Jetzt noch die checked Items setzen
- ClassControlValues.LoadControlValue(CURRENT_RECORD_ID, CURRENT_PARENT_ID, controlId, control, values, 99)
+ ' ClassControlValues.LoadControlValue(CURRENT_RECORD_ID, CURRENT_PARENT_ID, controlId, control, values, 99)
Catch ex As Exception
If ex.Message.Contains("Objektverweis") Or ex.Message.Contains("reference not set") Then
diff --git a/app/DD-Record-Organiser/ClassControlLoader.vb b/app/DD-Record-Organiser/ClassControlLoader.vb
index 06f734b..8b4f7eb 100644
--- a/app/DD-Record-Organiser/ClassControlLoader.vb
+++ b/app/DD-Record-Organiser/ClassControlLoader.vb
@@ -203,29 +203,34 @@
If ControlId = 272 Then
Console.WriteLine("272")
End If
- Dim autoValue = LoadAutoValue(control, recordId, parentRecordId, entity_ID)
+ Dim autoValue
- If IsNothing(autoValue) Then
- If VARIABLE_VALUE = True Then
- control.Text = value
+ Dim drarray() As DataRow = CURRENT_SQL_AUTO_VALUES_DT.Select("CONTROL_ID = " & ControlId)
+ If drarray.Length > 0 Then
+ Dim ID = drarray(0)("CONNECTION_ID").ToString
+ Dim Sql
+ If Not IsNothing(ID) Then
+ Sql = drarray(0)("SQL_COMMAND").ToString
+ Sql = ClassControlValues.ReplaceSqlCommandPlaceholders(Sql, recordId, parentRecordId, entity_ID)
+ autoValue = ClassDatabase.Execute_ScalarWithConnection(ID, Sql)
Else
-
-
- If ControlId = 272 Then
- Console.WriteLine("VertragsNr")
- End If
- Dim SQL = String.Format("SELECT GUID FROM TBPMO_CONTROL_SCREEN WHERE CONTROL_ID = {0} AND SCREEN_ID = {1}", ControlId, CURRENT_SCREEN_ID)
- Dim ctrl_screen_id = ClassDatabase.Execute_Scalar(SQL, True)
- If ctrl_screen_id > 0 Then
- SQL = String.Format("SELECT CAPTION FROM TBPMO_CONTROL_LANGUAGE WHERE CONTROL_SCREEN_ID = {0} AND LANGUAGE_TYPE = '{1}'", ctrl_screen_id, USER_LANGUAGE)
- Dim labelText As String = ClassDatabase.Execute_Scalar(SQL)
- control.Text = labelText
- End If
+ autoValue = ClassDatabase.Execute_Scalar(Sql, True)
+ End If
+ If IsNothing(autoValue) Then
+ If VARIABLE_VALUE = True Then
+ control.Text = value
+ Else
+ Sql = String.Format("SELECT GUID FROM TBPMO_CONTROL_SCREEN WHERE CONTROL_ID = {0} AND SCREEN_ID = {1}", ControlId, CURRENT_SCREEN_ID)
+ Dim ctrl_screen_id = ClassDatabase.Execute_Scalar(Sql, True)
+ If ctrl_screen_id > 0 Then
+ Sql = String.Format("SELECT CAPTION FROM TBPMO_CONTROL_LANGUAGE WHERE CONTROL_SCREEN_ID = {0} AND LANGUAGE_TYPE = '{1}'", ctrl_screen_id, USER_LANGUAGE)
+ Dim labelText As String = ClassDatabase.Execute_Scalar(Sql)
+ control.Text = labelText
+ End If
+ End If
+ Else
+ control.Text = autoValue
End If
-
-
- Else
- control.Text = autoValue
End If
Catch ex As Exception
MsgBox("Unexpected Error in LoadValueMain:" & vbNewLine & ex.Message)
@@ -279,16 +284,39 @@
If CURRENT_RECORD_ENABLED = False Then
control.Text = value
Else
-
If VARIABLE_VALUE = True Then
control.Text = value
Else
- Dim autoValue = LoadAutoValue(control, recordId, parentRecordId, entity_ID)
- If IsNothing(autoValue) Then
- control.Text = value
- Else
- control.Text = autoValue
+ Dim drarray() As DataRow = CURRENT_SQL_AUTO_VALUES_DT.Select("CONTROL_ID = " & ControlId)
+ If drarray.Length > 0 Then
+ Dim autoValue
+ Dim ID = drarray(0)("CONNECTION_ID").ToString
+ Dim Sql = drarray(0)("SQL_COMMAND").ToString
+ If Not IsNothing(ID) Then
+ autoValue = ClassDatabase.Execute_ScalarWithConnection(ID, Sql)
+ Else
+ autoValue = ClassDatabase.Execute_Scalar(Sql, True)
+ End If
+ ' AutoValue = ClassDatabase.Execute_Scalar(SQL)
+
+ If String.IsNullOrEmpty(autoValue) Or IsDBNull(autoValue) Then
+ control.Text = value
+ Else
+ control.Text = autoValue
+ End If
+
End If
+ 'If USER_WAN = True Then 'WENN in einer WAN-Umgebung betrieben
+
+ 'Else 'in LAN-Umgebung
+ ' Dim autoValue = LoadAutoValue(control, recordId, parentRecordId, entity_ID)
+ ' If IsNothing(autoValue) Then
+ ' control.Text = value
+ ' Else
+ ' control.Text = autoValue
+ ' End If
+ 'End If
+
End If
End If
@@ -376,7 +404,10 @@
End If
For Each v As String In values
- ' Alle Werte, die v entsprechen, anhaken
+ 'For i As Integer = 0 To control.ItemCount - 1
+
+ ' Console.WriteLine(control.GetItemText(i))
+ 'Next i
Dim posBefore As Integer = 0
While (control.FindStringExact(v, posBefore) > -1)
Dim pos = control.FindStringExact(v, posBefore)
@@ -391,11 +422,7 @@
End If
End While
- 'Dim pos = control.FindStringExact(v)
- 'If pos >= 0 Then
- ' control.SetItemCheckState(pos, CheckState.Checked)
- 'End If
Next
End Sub
diff --git a/app/DD-Record-Organiser/ClassControlValues.vb b/app/DD-Record-Organiser/ClassControlValues.vb
index b48920d..6898810 100644
--- a/app/DD-Record-Organiser/ClassControlValues.vb
+++ b/app/DD-Record-Organiser/ClassControlValues.vb
@@ -144,9 +144,17 @@ Public Class ClassControlValues
Public Shared Sub LoadControlValues(RecordId As Integer, ParentRecordId As Integer, FormId As Integer, controls As Control.ControlCollection, Entity_ID As Integer)
Try
+ Dim sw As New Stopwatch
+ sw.Start()
+
'Dim SQL As String = String.Format("SELECT * FROM VWPMO_VALUES WHERE VALUE <> '' AND RECORD_ID = {0}", RecordId)
Dim SQL As String = String.Format("SELECT * FROM VWPMO_VALUES WHERE RECORD_ID = {0}", RecordId)
Dim DT_ControlValues As DataTable = ClassDatabase.Return_Datatable(SQL, "LoadControlValues")
+ CURRENT_CONTROL_VALUES = DT_ControlValues
+ Dim elapsed As Double
+ elapsed = sw.Elapsed.TotalSeconds
+ sw.Stop()
+ If LogErrorsOnly = False Then ClassLogger.Add(String.Format(" >> Load VWPMO_VALUES via SQL took {0} to load", Format(elapsed, "0.000000000") & " seconds"), False)
If controls.Count = 0 Then
ClassLogger.Add("the control-Collection in LoadControlValuesNeu is empty!", True)
@@ -157,26 +165,38 @@ Public Class ClassControlValues
' Zuerst alle Controls leeren
ClearControlValues(controls)
-
+ sw.Start()
' Load all Hints for controls
- LoadControlHints(controls)
-
+ Dim SQLHint = "SELECT * FROM VWPMO_CONTROL_HINT WHERE FORM_ID = " & FormId
+ Dim DT_Hints As DataTable = ClassDatabase.Return_Datatable(SQLHint, "LoadControlHints")
+ ' ' Hint in DT_Hints suchen der zur aktuellen controlId passt
+ For Each row As DataRow In DT_Hints.Rows
+ ClassControlValueCache.SaveHint(row.Item(1), row.Item(2))
+ Next
+ ' LoadControlHints(controls)
+ elapsed = sw.Elapsed.TotalSeconds
+ sw.Stop()
+ If LogErrorsOnly = False Then ClassLogger.Add(String.Format(" >> LoadControlHints took {0} to load", Format(elapsed, "0.000000000") & " seconds"), False)
+ sw.Start()
+ Dim result As Double = 0
For Each control As Control In controls
Dim ControlId As Integer = DirectCast(control.Tag, ClassControlMetadata).Id
-
' Wert per LINQ aus DT_ControlValues suchen der zur aktuellen controlId passt
Dim values As List(Of Object) = (From row In DT_ControlValues.AsEnumerable()
Where row.Item("CONTROL_ID") = ControlId
Select row.Item("VALUE")).ToList()
-
+
If TypeOf control Is GroupBox Then
Dim groupbox As GroupBox = DirectCast(control, GroupBox)
LoadControlValues(RecordId, ParentRecordId, FormId, groupbox.Controls, Entity_ID)
Else
LoadControlValue(RecordId, ParentRecordId, ControlId, control, values, Entity_ID)
End If
-
Next
+ Console.WriteLine("Secons Sum: " & result)
+ elapsed = sw.Elapsed.TotalSeconds
+ sw.Stop()
+ If LogErrorsOnly = False Then ClassLogger.Add(String.Format(" >> Loop LoadControlValue took {0} to load", Format(elapsed, "0.000000000") & " seconds"), False)
Catch ex As Exception
ClassLogger.Add("Unexpected Error in LoadControlValuesNeu: " & ex.Message, True)
MsgBox("Error in LoadControlValuesNeu:" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
@@ -398,7 +418,7 @@ Public Class ClassControlValues
Dim elapsed As Double
elapsed = SW.Elapsed.TotalSeconds
SW.Stop()
- Console.WriteLine("LoadControlValuesListWithPlaceholders took {0} to load", Format(elapsed, "0.000000000") & " seconds")
+ If LogErrorsOnly = False Then ClassLogger.Add(String.Format(" >> LoadControlValuesListWithPlaceholders took {0} to load", Format(elapsed, "0.000000000") & " seconds"), False)
Catch ex As Exception
ClassLogger.Add("Unexpected Error in LoadControlValuesListWithPlaceholders: " & ex.Message, True)
MsgBox("Unexpected Error in LoadControlValuesListWithPlaceholders:" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
@@ -466,7 +486,7 @@ Public Class ClassControlValues
Dim elapsed As Double
elapsed = SW.Elapsed.TotalSeconds
SW.Stop()
- Console.WriteLine("Enable_Depending_Controls took {0} to load", Format(elapsed, "0.000000000") & " seconds")
+ If LogErrorsOnly = False Then ClassLogger.Add(String.Format(" >> Enable_Depending_Controls took {0} to load", Format(elapsed, "0.000000000") & " seconds"), False)
Catch ex As Exception
ClassLogger.Add("Unexpected Error in Enable_Depending_Controls: " & ex.Message, True)
MsgBox("Unexpected Error in Enable_Depending_Controls:" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
diff --git a/app/DD-Record-Organiser/ClassInit.vb b/app/DD-Record-Organiser/ClassInit.vb
index 83d4d8a..8c9e804 100644
--- a/app/DD-Record-Organiser/ClassInit.vb
+++ b/app/DD-Record-Organiser/ClassInit.vb
@@ -70,6 +70,7 @@ Public Class ClassInit
MsgBox(msg, MsgBoxStyle.Exclamation)
Return False
Else
+ USER_WAN = ClassDatabase.Execute_Scalar("SELECT WAN_ENVIRONMENT FROM TBDD_USER WHERE GUID = " & USER_GUID, False)
USER_LANGUAGE = ClassDatabase.Execute_Scalar("SELECT LANGUAGE FROM TBDD_USER WHERE GUID = " & USER_GUID, False)
Dim DT_CLIENT_USER As DataTable = ClassDatabase.Return_Datatable("SELECT CLIENT_ID FROM TBDD_CLIENT_USER WHERE USER_ID = " & USER_GUID)
Dim i As Integer = 0
diff --git a/app/DD-Record-Organiser/DD_DMSDataSet.xsc b/app/DD-Record-Organiser/DD_DMSDataSet.xsc
index 0620b09..6cf7288 100644
--- a/app/DD-Record-Organiser/DD_DMSDataSet.xsc
+++ b/app/DD-Record-Organiser/DD_DMSDataSet.xsc
@@ -99,39 +99,29 @@
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
diff --git a/app/DD-Record-Organiser/DD_DMSDataSet.xsd b/app/DD-Record-Organiser/DD_DMSDataSet.xsd
index 9a1adee..be764fb 100644
--- a/app/DD-Record-Organiser/DD_DMSDataSet.xsd
+++ b/app/DD-Record-Organiser/DD_DMSDataSet.xsd
@@ -1170,8 +1170,8 @@ WHERE (GUID = @Original_GUID)
INSERT INTO TBDD_USER
- (PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, RECORD_ADMIN, ADDED_WHO, MODULE_RECORD_ORG, LANGUAGE, SHORTNAME, COMMENT)
-VALUES (@PRENAME,@NAME,@USERNAME,@EMAIL,@LOGGED_IN, 0,@ADDED_WHO, 1,@LANGUAG,@SHORTNAME,@COMMENT);
+ (PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, RECORD_ADMIN, ADDED_WHO, MODULE_RECORD_ORG, LANGUAGE, SHORTNAME, COMMENT, WAN_ENVIRONMENT)
+VALUES (@PRENAME,@NAME,@USERNAME,@EMAIL,@LOGGED_IN, 0,@ADDED_WHO, 1,@LANGUAG,@SHORTNAME,@COMMENT,@WAN_ENVIRONMENT);
SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, RECORD_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBDD_USER WHERE (GUID = SCOPE_IDENTITY())
@@ -1183,13 +1183,14 @@ SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHE
+
SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, RECORD_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN,
- LANGUAGE, COMMENT, SHORTNAME
+ LANGUAGE, COMMENT, SHORTNAME, WAN_ENVIRONMENT
FROM TBDD_USER
WHERE (MODULE_RECORD_ORG = 1)
ORDER BY USERNAME
@@ -1200,8 +1201,8 @@ ORDER BY USERNAME
UPDATE TBDD_USER
SET PRENAME = @PRENAME, NAME = @NAME, USERNAME = @USERNAME, EMAIL = @EMAIL, RECORD_ADMIN = @RECORD_ADMIN, CHANGED_WHO = @CHANGED_WHO, LANGUAGE = @LANGUAGE,
- SHORTNAME = @SHORTNAME, COMMENT = @COMMENT
-WHERE (GUID = @Original_GUID);
+ SHORTNAME = @SHORTNAME, COMMENT = @COMMENT, WAN_ENVIRONMENT = @WAN_ENVIRONMENT
+WHERE (GUID = @Original_GUID);
SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, RECORD_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBDD_USER WHERE (GUID = @GUID)
@@ -1213,6 +1214,7 @@ SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHE
+
@@ -1238,6 +1240,7 @@ SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHE
+
@@ -4046,7 +4049,7 @@ SELECT GUID, ENTITY_ID, GROUP_ID, EDIT_REC, ADD_REC, DELETE_REC, ADD_DOC, VIEW_D
-
+
@@ -4077,6 +4080,7 @@ SELECT GUID, ENTITY_ID, GROUP_ID, EDIT_REC, ADD_REC, DELETE_REC, ADD_DOC, VIEW_D
+
diff --git a/app/DD-Record-Organiser/DD_DMSDataSet.xss b/app/DD-Record-Organiser/DD_DMSDataSet.xss
index 28f5aa8..b29eea6 100644
--- a/app/DD-Record-Organiser/DD_DMSDataSet.xss
+++ b/app/DD-Record-Organiser/DD_DMSDataSet.xss
@@ -4,54 +4,55 @@
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
-->
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
437
@@ -67,7 +68,7 @@
-
+
1701
@@ -79,7 +80,7 @@
-
+
1627
@@ -91,7 +92,7 @@
-
+
710
@@ -107,7 +108,7 @@
-
+
1374
@@ -123,7 +124,7 @@
-
+
842
@@ -135,7 +136,7 @@
-
+
107
@@ -155,7 +156,7 @@
-
+
1632
@@ -167,7 +168,7 @@
-
+
1358
@@ -179,7 +180,7 @@
-
+
601
@@ -195,7 +196,7 @@
-
+
618
@@ -207,7 +208,7 @@
-
+
2461
@@ -223,7 +224,7 @@
-
+
2358
@@ -235,7 +236,7 @@
-
+
2134
@@ -251,7 +252,7 @@
-
+
2142
@@ -267,7 +268,7 @@
-
+
141
@@ -283,5 +284,45 @@
+
+
+
+ 22
+ 0
+
+
+ 22
+ -30
+
+
+ 22
+ -30
+
+
+ 22
+ 0
+
+
+
+
+
+
+ 14
+ 0
+
+
+ 14
+ -30
+
+
+ 14
+ -30
+
+
+ 14
+ 0
+
+
+
\ No newline at end of file
diff --git a/app/DD-Record-Organiser/DD_DMSDataSet1.Designer.vb b/app/DD-Record-Organiser/DD_DMSDataSet1.Designer.vb
index e3791e7..a90f4d8 100644
--- a/app/DD-Record-Organiser/DD_DMSDataSet1.Designer.vb
+++ b/app/DD-Record-Organiser/DD_DMSDataSet1.Designer.vb
@@ -8704,6 +8704,8 @@ Partial Public Class DD_DMSDataSet
Private columnSHORTNAME As Global.System.Data.DataColumn
+ Private columnWAN_ENVIRONMENT As Global.System.Data.DataColumn
+
_
Public Sub New()
@@ -8875,6 +8877,14 @@ Partial Public Class DD_DMSDataSet
End Get
End Property
+ _
+ Public ReadOnly Property WAN_ENVIRONMENTColumn() As Global.System.Data.DataColumn
+ Get
+ Return Me.columnWAN_ENVIRONMENT
+ End Get
+ End Property
+
_
@@ -8928,9 +8938,10 @@ Partial Public Class DD_DMSDataSet
ByVal RECORD_ADMIN As Boolean, _
ByVal LANGUAGE As String, _
ByVal COMMENT As String, _
- ByVal SHORTNAME As String) As TBDD_USERRow
+ ByVal SHORTNAME As String, _
+ ByVal WAN_ENVIRONMENT As Boolean) As TBDD_USERRow
Dim rowTBDD_USERRow As TBDD_USERRow = CType(Me.NewRow,TBDD_USERRow)
- Dim columnValuesArray() As Object = New Object() {Nothing, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, RECORD_ADMIN, LANGUAGE, COMMENT, SHORTNAME}
+ Dim columnValuesArray() As Object = New Object() {Nothing, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, RECORD_ADMIN, LANGUAGE, COMMENT, SHORTNAME, WAN_ENVIRONMENT}
rowTBDD_USERRow.ItemArray = columnValuesArray
Me.Rows.Add(rowTBDD_USERRow)
Return rowTBDD_USERRow
@@ -8976,6 +8987,7 @@ Partial Public Class DD_DMSDataSet
Me.columnLANGUAGE = MyBase.Columns("LANGUAGE")
Me.columnCOMMENT = MyBase.Columns("COMMENT")
Me.columnSHORTNAME = MyBase.Columns("SHORTNAME")
+ Me.columnWAN_ENVIRONMENT = MyBase.Columns("WAN_ENVIRONMENT")
End Sub
_
Public Property ADDED_WHEN() As Date
Get
- Try
- Return CType(Me(Me.tableTBDD_USER.ADDED_WHENColumn),Date)
- Catch e As Global.System.InvalidCastException
- Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte ADDED_WHEN in Tabelle TBDD_USER ist DBNull.", e)
- End Try
+ Return CType(Me(Me.tableTBDD_USER.ADDED_WHENColumn),Date)
End Get
Set
Me(Me.tableTBDD_USER.ADDED_WHENColumn) = value
@@ -24054,6 +24067,17 @@ Partial Public Class DD_DMSDataSet
End Set
End Property
+ _
+ Public Property WAN_ENVIRONMENT() As Boolean
+ Get
+ Return CType(Me(Me.tableTBDD_USER.WAN_ENVIRONMENTColumn),Boolean)
+ End Get
+ Set
+ Me(Me.tableTBDD_USER.WAN_ENVIRONMENTColumn) = value
+ End Set
+ End Property
+
_
Public Function IsPRENAMENull() As Boolean
@@ -24126,18 +24150,6 @@ Partial Public Class DD_DMSDataSet
Me(Me.tableTBDD_USER.LOG_OUT_WHENColumn) = Global.System.Convert.DBNull
End Sub
- _
- Public Function IsADDED_WHENNull() As Boolean
- Return Me.IsNull(Me.tableTBDD_USER.ADDED_WHENColumn)
- End Function
-
- _
- Public Sub SetADDED_WHENNull()
- Me(Me.tableTBDD_USER.ADDED_WHENColumn) = Global.System.Convert.DBNull
- End Sub
-
_
Public Function IsCHANGED_WHONull() As Boolean
@@ -37493,6 +37505,7 @@ Namespace DD_DMSDataSetTableAdapters
tableMapping.ColumnMappings.Add("LANGUAGE", "LANGUAGE")
tableMapping.ColumnMappings.Add("COMMENT", "COMMENT")
tableMapping.ColumnMappings.Add("SHORTNAME", "SHORTNAME")
+ tableMapping.ColumnMappings.Add("WAN_ENVIRONMENT", "WAN_ENVIRONMENT")
Me._adapter.TableMappings.Add(tableMapping)
Me._adapter.DeleteCommand = New Global.System.Data.SqlClient.SqlCommand()
Me._adapter.DeleteCommand.Connection = Me.Connection
@@ -37501,259 +37514,263 @@ Namespace DD_DMSDataSetTableAdapters
Me._adapter.DeleteCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@Original_GUID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Original, false, Nothing, "", "", ""))
Me._adapter.InsertCommand = New Global.System.Data.SqlClient.SqlCommand()
Me._adapter.InsertCommand.Connection = Me.Connection
- Me._adapter.InsertCommand.CommandText = "INSERT INTO TBDD_USER" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " (PRENAME, NAME, USERNAME, EMAIL, " & _
- "LOGGED_IN, RECORD_ADMIN, ADDED_WHO, MODULE_RECORD_ORG, LANGUAGE, SHORTNAME, COMM" & _
- "ENT)" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "VALUES (@PRENAME,@NAME,@USERNAME,@EMAIL,@LOGGED_IN, 0,@ADDED_WHO, 1" & _
- ",@LANGUAG,@SHORTNAME,@COMMENT); " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "SELECT GUID, PRENAME, NAME, USERNAME, EMAIL" & _
- ", LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, RECORD_ADMIN, ADDED_WHO, A" & _
- "DDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBDD_USER WHERE (GUID = SCOPE_IDENTITY" & _
- "())"
+ Me._adapter.InsertCommand.CommandText = "INSERT INTO TBDD_USER"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" (PRENAME, NAME, USERNAME, EMAIL, "& _
+ "LOGGED_IN, RECORD_ADMIN, ADDED_WHO, MODULE_RECORD_ORG, LANGUAGE, SHORTNAME, COMM"& _
+ "ENT, WAN_ENVIRONMENT)"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"VALUES (@PRENAME,@NAME,@USERNAME,@EMAIL,@LOGGED_IN"& _
+ ", 0,@ADDED_WHO, 1,@LANGUAG,@SHORTNAME,@COMMENT,@WAN_ENVIRONMENT); "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SELECT G"& _
+ "UID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_O"& _
+ "UT_WHEN, RECORD_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBD"& _
+ "D_USER WHERE (GUID = SCOPE_IDENTITY())"
Me._adapter.InsertCommand.CommandType = Global.System.Data.CommandType.Text
- Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@PRENAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "PRENAME", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@NAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "NAME", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@USERNAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "USERNAME", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@EMAIL", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "EMAIL", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@LOGGED_IN", Global.System.Data.SqlDbType.Bit, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "LOGGED_IN", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@ADDED_WHO", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "ADDED_WHO", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@LANGUAG", Global.System.Data.SqlDbType.VarChar, 5, Global.System.Data.ParameterDirection.Input, 0, 0, "LANGUAGE", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@SHORTNAME", Global.System.Data.SqlDbType.VarChar, 30, Global.System.Data.ParameterDirection.Input, 0, 0, "SHORTNAME", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@COMMENT", Global.System.Data.SqlDbType.VarChar, 200, Global.System.Data.ParameterDirection.Input, 0, 0, "COMMENT", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@PRENAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "PRENAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@NAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "NAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@USERNAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "USERNAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@EMAIL", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "EMAIL", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@LOGGED_IN", Global.System.Data.SqlDbType.Bit, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "LOGGED_IN", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@ADDED_WHO", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "ADDED_WHO", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@LANGUAG", Global.System.Data.SqlDbType.VarChar, 5, Global.System.Data.ParameterDirection.Input, 0, 0, "LANGUAGE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@SHORTNAME", Global.System.Data.SqlDbType.VarChar, 30, Global.System.Data.ParameterDirection.Input, 0, 0, "SHORTNAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@COMMENT", Global.System.Data.SqlDbType.VarChar, 200, Global.System.Data.ParameterDirection.Input, 0, 0, "COMMENT", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@WAN_ENVIRONMENT", Global.System.Data.SqlDbType.Bit, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "WAN_ENVIRONMENT", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
Me._adapter.UpdateCommand = New Global.System.Data.SqlClient.SqlCommand()
Me._adapter.UpdateCommand.Connection = Me.Connection
- Me._adapter.UpdateCommand.CommandText = "UPDATE TBDD_USER" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "SET PRENAME = @PRENAME, NAME = @NAME, USER" & _
- "NAME = @USERNAME, EMAIL = @EMAIL, RECORD_ADMIN = @RECORD_ADMIN, CHANGED_WHO = @C" & _
- "HANGED_WHO, LANGUAGE = @LANGUAGE, " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " SHORTNAME = @SHORTN" & _
- "AME, COMMENT = @COMMENT" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "WHERE (GUID = @Original_GUID); " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "SELECT GUID, " & _
- "PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WH" & _
- "EN, RECORD_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBDD_USE" & _
- "R WHERE (GUID = @GUID)"
+ Me._adapter.UpdateCommand.CommandText = "UPDATE TBDD_USER"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SET PRENAME = @PRENAME, NAME = @NAME, USER"& _
+ "NAME = @USERNAME, EMAIL = @EMAIL, RECORD_ADMIN = @RECORD_ADMIN, CHANGED_WHO = @C"& _
+ "HANGED_WHO, LANGUAGE = @LANGUAGE, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" SHORTNAME = @SHORTN"& _
+ "AME, COMMENT = @COMMENT, WAN_ENVIRONMENT = @WAN_ENVIRONMENT"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE (GUID "& _
+ "= @Original_GUID); "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, "& _
+ "LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, RECORD_ADMIN, ADDED_WHO, ADDED_WHEN, CH"& _
+ "ANGED_WHO, CHANGED_WHEN FROM TBDD_USER WHERE (GUID = @GUID)"
Me._adapter.UpdateCommand.CommandType = Global.System.Data.CommandType.Text
- Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@PRENAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "PRENAME", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@NAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "NAME", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@USERNAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "USERNAME", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@EMAIL", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "EMAIL", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@RECORD_ADMIN", Global.System.Data.SqlDbType.Bit, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "RECORD_ADMIN", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@CHANGED_WHO", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "CHANGED_WHO", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@LANGUAGE", Global.System.Data.SqlDbType.VarChar, 5, Global.System.Data.ParameterDirection.Input, 0, 0, "LANGUAGE", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@SHORTNAME", Global.System.Data.SqlDbType.VarChar, 30, Global.System.Data.ParameterDirection.Input, 0, 0, "SHORTNAME", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@COMMENT", Global.System.Data.SqlDbType.VarChar, 200, Global.System.Data.ParameterDirection.Input, 0, 0, "COMMENT", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
- Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@Original_GUID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Original, False, Nothing, "", "", ""))
- Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@GUID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Original, False, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@PRENAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "PRENAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@NAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "NAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@USERNAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "USERNAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@EMAIL", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "EMAIL", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@RECORD_ADMIN", Global.System.Data.SqlDbType.Bit, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "RECORD_ADMIN", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@CHANGED_WHO", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "CHANGED_WHO", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@LANGUAGE", Global.System.Data.SqlDbType.VarChar, 5, Global.System.Data.ParameterDirection.Input, 0, 0, "LANGUAGE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@SHORTNAME", Global.System.Data.SqlDbType.VarChar, 30, Global.System.Data.ParameterDirection.Input, 0, 0, "SHORTNAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@COMMENT", Global.System.Data.SqlDbType.VarChar, 200, Global.System.Data.ParameterDirection.Input, 0, 0, "COMMENT", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@WAN_ENVIRONMENT", Global.System.Data.SqlDbType.Bit, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "WAN_ENVIRONMENT", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@Original_GUID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Original, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@GUID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Original, false, Nothing, "", "", ""))
End Sub
-
- _
+
+ _
Private Sub InitConnection()
Me._connection = New Global.System.Data.SqlClient.SqlConnection()
Me._connection.ConnectionString = Global.DD_Record_Organiser.My.MySettings.Default.DD_DMSConnectionString
End Sub
-
- _
+
+ _
Private Sub InitCommandCollection()
Me._commandCollection = New Global.System.Data.SqlClient.SqlCommand(0) {}
Me._commandCollection(0) = New Global.System.Data.SqlClient.SqlCommand()
Me._commandCollection(0).Connection = Me.Connection
- Me._commandCollection(0).CommandText = "SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_" & _
- "IN_WHEN, LOG_OUT_WHEN, RECORD_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED" & _
- "_WHEN, " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " LANGUAGE, COMMENT, SHORTNAME" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "FROM " & _
- "TBDD_USER" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "WHERE (MODULE_RECORD_ORG = 1)" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "ORDER BY USERNAME"
+ Me._commandCollection(0).CommandText = "SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_"& _
+ "IN_WHEN, LOG_OUT_WHEN, RECORD_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED"& _
+ "_WHEN, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" LANGUAGE, COMMENT, SHORTNAME, WAN_ENVIRONMENT"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"FROM TBDD_USER"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE (MODULE_RECORD_ORG = 1)"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"ORDER BY USERN"& _
+ "AME"
Me._commandCollection(0).CommandType = Global.System.Data.CommandType.Text
End Sub
-
- _
- Public Overridable Overloads Function Fill(ByVal dataTable As DD_DMSDataSet.TBDD_USERDataTable) As Integer
+
+ _
+ Public Overloads Overridable Function Fill(ByVal dataTable As DD_DMSDataSet.TBDD_USERDataTable) As Integer
Me.Adapter.SelectCommand = Me.CommandCollection(0)
- If (Me.ClearBeforeFill = True) Then
- dataTable.Clear()
+ If (Me.ClearBeforeFill = true) Then
+ dataTable.Clear
End If
Dim returnValue As Integer = Me.Adapter.Fill(dataTable)
Return returnValue
End Function
-
- _
- Public Overridable Overloads Function GetData() As DD_DMSDataSet.TBDD_USERDataTable
+
+ _
+ Public Overloads Overridable Function GetData() As DD_DMSDataSet.TBDD_USERDataTable
Me.Adapter.SelectCommand = Me.CommandCollection(0)
Dim dataTable As DD_DMSDataSet.TBDD_USERDataTable = New DD_DMSDataSet.TBDD_USERDataTable()
Me.Adapter.Fill(dataTable)
Return dataTable
End Function
-
- _
- Public Overridable Overloads Function Update(ByVal dataTable As DD_DMSDataSet.TBDD_USERDataTable) As Integer
+
+ _
+ Public Overloads Overridable Function Update(ByVal dataTable As DD_DMSDataSet.TBDD_USERDataTable) As Integer
Return Me.Adapter.Update(dataTable)
End Function
-
- _
- Public Overridable Overloads Function Update(ByVal dataSet As DD_DMSDataSet) As Integer
+
+ _
+ Public Overloads Overridable Function Update(ByVal dataSet As DD_DMSDataSet) As Integer
Return Me.Adapter.Update(dataSet, "TBDD_USER")
End Function
-
- _
- Public Overridable Overloads Function Update(ByVal dataRow As Global.System.Data.DataRow) As Integer
+
+ _
+ Public Overloads Overridable Function Update(ByVal dataRow As Global.System.Data.DataRow) As Integer
Return Me.Adapter.Update(New Global.System.Data.DataRow() {dataRow})
End Function
-
- _
- Public Overridable Overloads Function Update(ByVal dataRows() As Global.System.Data.DataRow) As Integer
+
+ _
+ Public Overloads Overridable Function Update(ByVal dataRows() As Global.System.Data.DataRow) As Integer
Return Me.Adapter.Update(dataRows)
End Function
-
- _
- Public Overridable Overloads Function Delete(ByVal Original_GUID As Integer) As Integer
- Me.Adapter.DeleteCommand.Parameters(0).Value = CType(Original_GUID, Integer)
+
+ _
+ Public Overloads Overridable Function Delete(ByVal Original_GUID As Integer) As Integer
+ Me.Adapter.DeleteCommand.Parameters(0).Value = CType(Original_GUID,Integer)
Dim previousConnectionState As Global.System.Data.ConnectionState = Me.Adapter.DeleteCommand.Connection.State
- If ((Me.Adapter.DeleteCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
+ If ((Me.Adapter.DeleteCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
<> Global.System.Data.ConnectionState.Open) Then
- Me.Adapter.DeleteCommand.Connection.Open()
+ Me.Adapter.DeleteCommand.Connection.Open
End If
- Try
+ Try
Dim returnValue As Integer = Me.Adapter.DeleteCommand.ExecuteNonQuery
Return returnValue
Finally
If (previousConnectionState = Global.System.Data.ConnectionState.Closed) Then
- Me.Adapter.DeleteCommand.Connection.Close()
+ Me.Adapter.DeleteCommand.Connection.Close
End If
End Try
End Function
-
- _
- Public Overridable Overloads Function Insert(ByVal PRENAME As String, ByVal NAME As String, ByVal USERNAME As String, ByVal EMAIL As String, ByVal LOGGED_IN As Boolean, ByVal ADDED_WHO As String, ByVal LANGUAG As String, ByVal SHORTNAME As String, ByVal COMMENT As String) As Integer
+
+ _
+ Public Overloads Overridable Function Insert(ByVal PRENAME As String, ByVal NAME As String, ByVal USERNAME As String, ByVal EMAIL As String, ByVal LOGGED_IN As Boolean, ByVal ADDED_WHO As String, ByVal LANGUAG As String, ByVal SHORTNAME As String, ByVal COMMENT As String, ByVal WAN_ENVIRONMENT As Boolean) As Integer
If (PRENAME Is Nothing) Then
Me.Adapter.InsertCommand.Parameters(0).Value = Global.System.DBNull.Value
Else
- Me.Adapter.InsertCommand.Parameters(0).Value = CType(PRENAME, String)
+ Me.Adapter.InsertCommand.Parameters(0).Value = CType(PRENAME,String)
End If
If (NAME Is Nothing) Then
Me.Adapter.InsertCommand.Parameters(1).Value = Global.System.DBNull.Value
Else
- Me.Adapter.InsertCommand.Parameters(1).Value = CType(NAME, String)
+ Me.Adapter.InsertCommand.Parameters(1).Value = CType(NAME,String)
End If
If (USERNAME Is Nothing) Then
Throw New Global.System.ArgumentNullException("USERNAME")
Else
- Me.Adapter.InsertCommand.Parameters(2).Value = CType(USERNAME, String)
+ Me.Adapter.InsertCommand.Parameters(2).Value = CType(USERNAME,String)
End If
If (EMAIL Is Nothing) Then
Me.Adapter.InsertCommand.Parameters(3).Value = Global.System.DBNull.Value
Else
- Me.Adapter.InsertCommand.Parameters(3).Value = CType(EMAIL, String)
+ Me.Adapter.InsertCommand.Parameters(3).Value = CType(EMAIL,String)
End If
- Me.Adapter.InsertCommand.Parameters(4).Value = CType(LOGGED_IN, Boolean)
+ Me.Adapter.InsertCommand.Parameters(4).Value = CType(LOGGED_IN,Boolean)
If (ADDED_WHO Is Nothing) Then
Throw New Global.System.ArgumentNullException("ADDED_WHO")
Else
- Me.Adapter.InsertCommand.Parameters(5).Value = CType(ADDED_WHO, String)
+ Me.Adapter.InsertCommand.Parameters(5).Value = CType(ADDED_WHO,String)
End If
If (LANGUAG Is Nothing) Then
Throw New Global.System.ArgumentNullException("LANGUAG")
Else
- Me.Adapter.InsertCommand.Parameters(6).Value = CType(LANGUAG, String)
+ Me.Adapter.InsertCommand.Parameters(6).Value = CType(LANGUAG,String)
End If
If (SHORTNAME Is Nothing) Then
Me.Adapter.InsertCommand.Parameters(7).Value = Global.System.DBNull.Value
Else
- Me.Adapter.InsertCommand.Parameters(7).Value = CType(SHORTNAME, String)
+ Me.Adapter.InsertCommand.Parameters(7).Value = CType(SHORTNAME,String)
End If
If (COMMENT Is Nothing) Then
Me.Adapter.InsertCommand.Parameters(8).Value = Global.System.DBNull.Value
Else
- Me.Adapter.InsertCommand.Parameters(8).Value = CType(COMMENT, String)
+ Me.Adapter.InsertCommand.Parameters(8).Value = CType(COMMENT,String)
End If
+ Me.Adapter.InsertCommand.Parameters(9).Value = CType(WAN_ENVIRONMENT,Boolean)
Dim previousConnectionState As Global.System.Data.ConnectionState = Me.Adapter.InsertCommand.Connection.State
- If ((Me.Adapter.InsertCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
+ If ((Me.Adapter.InsertCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
<> Global.System.Data.ConnectionState.Open) Then
- Me.Adapter.InsertCommand.Connection.Open()
+ Me.Adapter.InsertCommand.Connection.Open
End If
- Try
+ Try
Dim returnValue As Integer = Me.Adapter.InsertCommand.ExecuteNonQuery
Return returnValue
Finally
If (previousConnectionState = Global.System.Data.ConnectionState.Closed) Then
- Me.Adapter.InsertCommand.Connection.Close()
+ Me.Adapter.InsertCommand.Connection.Close
End If
End Try
End Function
-
- _
- Public Overridable Overloads Function Update(ByVal PRENAME As String, ByVal NAME As String, ByVal USERNAME As String, ByVal EMAIL As String, ByVal RECORD_ADMIN As Boolean, ByVal CHANGED_WHO As String, ByVal LANGUAGE As String, ByVal SHORTNAME As String, ByVal COMMENT As String, ByVal Original_GUID As Integer, ByVal GUID As Integer) As Integer
+
+ _
+ Public Overloads Overridable Function Update(ByVal PRENAME As String, ByVal NAME As String, ByVal USERNAME As String, ByVal EMAIL As String, ByVal RECORD_ADMIN As Boolean, ByVal CHANGED_WHO As String, ByVal LANGUAGE As String, ByVal SHORTNAME As String, ByVal COMMENT As String, ByVal WAN_ENVIRONMENT As Boolean, ByVal Original_GUID As Integer, ByVal GUID As Integer) As Integer
If (PRENAME Is Nothing) Then
Me.Adapter.UpdateCommand.Parameters(0).Value = Global.System.DBNull.Value
Else
- Me.Adapter.UpdateCommand.Parameters(0).Value = CType(PRENAME, String)
+ Me.Adapter.UpdateCommand.Parameters(0).Value = CType(PRENAME,String)
End If
If (NAME Is Nothing) Then
Me.Adapter.UpdateCommand.Parameters(1).Value = Global.System.DBNull.Value
Else
- Me.Adapter.UpdateCommand.Parameters(1).Value = CType(NAME, String)
+ Me.Adapter.UpdateCommand.Parameters(1).Value = CType(NAME,String)
End If
If (USERNAME Is Nothing) Then
Throw New Global.System.ArgumentNullException("USERNAME")
Else
- Me.Adapter.UpdateCommand.Parameters(2).Value = CType(USERNAME, String)
+ Me.Adapter.UpdateCommand.Parameters(2).Value = CType(USERNAME,String)
End If
If (EMAIL Is Nothing) Then
Me.Adapter.UpdateCommand.Parameters(3).Value = Global.System.DBNull.Value
Else
- Me.Adapter.UpdateCommand.Parameters(3).Value = CType(EMAIL, String)
+ Me.Adapter.UpdateCommand.Parameters(3).Value = CType(EMAIL,String)
End If
- Me.Adapter.UpdateCommand.Parameters(4).Value = CType(RECORD_ADMIN, Boolean)
+ Me.Adapter.UpdateCommand.Parameters(4).Value = CType(RECORD_ADMIN,Boolean)
If (CHANGED_WHO Is Nothing) Then
Me.Adapter.UpdateCommand.Parameters(5).Value = Global.System.DBNull.Value
Else
- Me.Adapter.UpdateCommand.Parameters(5).Value = CType(CHANGED_WHO, String)
+ Me.Adapter.UpdateCommand.Parameters(5).Value = CType(CHANGED_WHO,String)
End If
If (LANGUAGE Is Nothing) Then
Throw New Global.System.ArgumentNullException("LANGUAGE")
Else
- Me.Adapter.UpdateCommand.Parameters(6).Value = CType(LANGUAGE, String)
+ Me.Adapter.UpdateCommand.Parameters(6).Value = CType(LANGUAGE,String)
End If
If (SHORTNAME Is Nothing) Then
Me.Adapter.UpdateCommand.Parameters(7).Value = Global.System.DBNull.Value
Else
- Me.Adapter.UpdateCommand.Parameters(7).Value = CType(SHORTNAME, String)
+ Me.Adapter.UpdateCommand.Parameters(7).Value = CType(SHORTNAME,String)
End If
If (COMMENT Is Nothing) Then
Me.Adapter.UpdateCommand.Parameters(8).Value = Global.System.DBNull.Value
Else
- Me.Adapter.UpdateCommand.Parameters(8).Value = CType(COMMENT, String)
+ Me.Adapter.UpdateCommand.Parameters(8).Value = CType(COMMENT,String)
End If
- Me.Adapter.UpdateCommand.Parameters(9).Value = CType(Original_GUID, Integer)
- Me.Adapter.UpdateCommand.Parameters(10).Value = CType(GUID, Integer)
+ Me.Adapter.UpdateCommand.Parameters(9).Value = CType(WAN_ENVIRONMENT,Boolean)
+ Me.Adapter.UpdateCommand.Parameters(10).Value = CType(Original_GUID,Integer)
+ Me.Adapter.UpdateCommand.Parameters(11).Value = CType(GUID,Integer)
Dim previousConnectionState As Global.System.Data.ConnectionState = Me.Adapter.UpdateCommand.Connection.State
- If ((Me.Adapter.UpdateCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
+ If ((Me.Adapter.UpdateCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
<> Global.System.Data.ConnectionState.Open) Then
- Me.Adapter.UpdateCommand.Connection.Open()
+ Me.Adapter.UpdateCommand.Connection.Open
End If
- Try
+ Try
Dim returnValue As Integer = Me.Adapter.UpdateCommand.ExecuteNonQuery
Return returnValue
Finally
If (previousConnectionState = Global.System.Data.ConnectionState.Closed) Then
- Me.Adapter.UpdateCommand.Connection.Close()
+ Me.Adapter.UpdateCommand.Connection.Close
End If
End Try
End Function
diff --git a/app/DD-Record-Organiser/ModuleMySettings.vb b/app/DD-Record-Organiser/ModuleMySettings.vb
index 46827b3..9c7c8c0 100644
--- a/app/DD-Record-Organiser/ModuleMySettings.vb
+++ b/app/DD-Record-Organiser/ModuleMySettings.vb
@@ -29,6 +29,7 @@ Module ModuleMySettings
Public USERS_LOGGED_IN = 0
Public USER_GUID = 0
Public USER_LANGUAGE As String = "de-DE"
+ Public USER_WAN As Boolean = False
Public USER_CLIENTS_COMMA_SEPERATED As String
Public sql_UserID As String = "SELECT GUID FROM TBDD_USER WHERE (LOWER(USERNAME) = LOWER('@user'))"
@@ -286,6 +287,10 @@ Module ModuleMySettings
newRow11("ConfigName") = "Task_Popup_minutes"
newRow11("Value") = "2"
table.Rows.Add(newRow11)
+ Dim newRow12 As DataRow = table.NewRow()
+ newRow12("ConfigName") = "WAN_ENVIRONMENT"
+ newRow12("Value") = "False"
+ table.Rows.Add(newRow12)
table.AcceptChanges()
ClassLogger.Add(">> CreateConfigTable su...", False)
diff --git a/app/DD-Record-Organiser/ModuleRuntimeVariables.vb b/app/DD-Record-Organiser/ModuleRuntimeVariables.vb
index 0e626b2..3ed34de 100644
--- a/app/DD-Record-Organiser/ModuleRuntimeVariables.vb
+++ b/app/DD-Record-Organiser/ModuleRuntimeVariables.vb
@@ -59,5 +59,11 @@
Public CURRENT_RECORD_ENABLED As Boolean = False
Public ENTITY_RELOAD_AFT_CONTROL_LOAD As Boolean = False
+ Public CURRENT_COL_COUNT As Integer = 0
+
+ Public CURRENT_ENTITY_DATATABLE As DataTable
+ Public CURRENT_ENTITY_VALUES_DT As DataTable
+ Public CURRENT_CONTROL_VALUES As DataTable
+ Public CURRENT_SQL_AUTO_VALUES_DT As DataTable
End Module
diff --git a/app/DD-Record-Organiser/frmConfig_Basic.Designer.vb b/app/DD-Record-Organiser/frmConfig_Basic.Designer.vb
index 8181018..4d37a00 100644
--- a/app/DD-Record-Organiser/frmConfig_Basic.Designer.vb
+++ b/app/DD-Record-Organiser/frmConfig_Basic.Designer.vb
@@ -37,7 +37,9 @@ Partial Class frmConfig_Basic
Me.txtServer = New System.Windows.Forms.TextBox()
Me.txtUser = New System.Windows.Forms.TextBox()
Me.txtPasswort = New System.Windows.Forms.TextBox()
+ Me.BtnConnect = New System.Windows.Forms.Button()
Me.TabPage2 = New System.Windows.Forms.TabPage()
+ Me.Button4 = New System.Windows.Forms.Button()
Me.GroupBox5 = New System.Windows.Forms.GroupBox()
Me.Label11 = New System.Windows.Forms.Label()
Me.Label10 = New System.Windows.Forms.Label()
@@ -57,6 +59,8 @@ Partial Class frmConfig_Basic
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.chkboxQuickMenue = New System.Windows.Forms.CheckBox()
Me.chkLogErrorsOnly = New System.Windows.Forms.CheckBox()
+ Me.Button1 = New System.Windows.Forms.Button()
+ Me.btnApplicationFolder = New System.Windows.Forms.Button()
Me.LinkLabel1 = New System.Windows.Forms.LinkLabel()
Me.TabPage3 = New System.Windows.Forms.TabPage()
Me.Label9 = New System.Windows.Forms.Label()
@@ -65,10 +69,6 @@ Partial Class frmConfig_Basic
Me.Button2 = New System.Windows.Forms.Button()
Me.txtScanFolderWatch = New System.Windows.Forms.TextBox()
Me.Label8 = New System.Windows.Forms.Label()
- Me.BtnConnect = New System.Windows.Forms.Button()
- Me.Button4 = New System.Windows.Forms.Button()
- Me.Button1 = New System.Windows.Forms.Button()
- Me.btnApplicationFolder = New System.Windows.Forms.Button()
Me.btnstartstop2 = New System.Windows.Forms.Button()
Me.TabControl1.SuspendLayout()
Me.TabPage1.SuspendLayout()
@@ -172,6 +172,13 @@ Partial Class frmConfig_Basic
Me.txtPasswort.Name = "txtPasswort"
Me.txtPasswort.UseSystemPasswordChar = True
'
+ 'BtnConnect
+ '
+ Me.BtnConnect.Image = Global.DD_Record_Organiser.My.Resources.Resources.database_go1
+ resources.ApplyResources(Me.BtnConnect, "BtnConnect")
+ Me.BtnConnect.Name = "BtnConnect"
+ Me.BtnConnect.UseVisualStyleBackColor = True
+ '
'TabPage2
'
Me.TabPage2.Controls.Add(Me.Button4)
@@ -188,6 +195,13 @@ Partial Class frmConfig_Basic
Me.TabPage2.Name = "TabPage2"
Me.TabPage2.UseVisualStyleBackColor = True
'
+ 'Button4
+ '
+ Me.Button4.Image = Global.DD_Record_Organiser.My.Resources.Resources.email_go
+ resources.ApplyResources(Me.Button4, "Button4")
+ Me.Button4.Name = "Button4"
+ Me.Button4.UseVisualStyleBackColor = True
+ '
'GroupBox5
'
Me.GroupBox5.Controls.Add(Me.Label11)
@@ -313,6 +327,20 @@ Partial Class frmConfig_Basic
Me.chkLogErrorsOnly.Name = "chkLogErrorsOnly"
Me.chkLogErrorsOnly.UseVisualStyleBackColor = True
'
+ 'Button1
+ '
+ Me.Button1.Image = Global.DD_Record_Organiser.My.Resources.Resources.folder_go
+ resources.ApplyResources(Me.Button1, "Button1")
+ Me.Button1.Name = "Button1"
+ Me.Button1.UseVisualStyleBackColor = True
+ '
+ 'btnApplicationFolder
+ '
+ Me.btnApplicationFolder.Image = Global.DD_Record_Organiser.My.Resources.Resources.folder_go
+ resources.ApplyResources(Me.btnApplicationFolder, "btnApplicationFolder")
+ Me.btnApplicationFolder.Name = "btnApplicationFolder"
+ Me.btnApplicationFolder.UseVisualStyleBackColor = True
+ '
'LinkLabel1
'
resources.ApplyResources(Me.LinkLabel1, "LinkLabel1")
@@ -368,34 +396,6 @@ Partial Class frmConfig_Basic
resources.ApplyResources(Me.Label8, "Label8")
Me.Label8.Name = "Label8"
'
- 'BtnConnect
- '
- Me.BtnConnect.Image = Global.DD_Record_Organiser.My.Resources.Resources.database_go1
- resources.ApplyResources(Me.BtnConnect, "BtnConnect")
- Me.BtnConnect.Name = "BtnConnect"
- Me.BtnConnect.UseVisualStyleBackColor = True
- '
- 'Button4
- '
- Me.Button4.Image = Global.DD_Record_Organiser.My.Resources.Resources.email_go
- resources.ApplyResources(Me.Button4, "Button4")
- Me.Button4.Name = "Button4"
- Me.Button4.UseVisualStyleBackColor = True
- '
- 'Button1
- '
- Me.Button1.Image = Global.DD_Record_Organiser.My.Resources.Resources.folder_go
- resources.ApplyResources(Me.Button1, "Button1")
- Me.Button1.Name = "Button1"
- Me.Button1.UseVisualStyleBackColor = True
- '
- 'btnApplicationFolder
- '
- Me.btnApplicationFolder.Image = Global.DD_Record_Organiser.My.Resources.Resources.folder_go
- resources.ApplyResources(Me.btnApplicationFolder, "btnApplicationFolder")
- Me.btnApplicationFolder.Name = "btnApplicationFolder"
- Me.btnApplicationFolder.UseVisualStyleBackColor = True
- '
'btnstartstop2
'
Me.btnstartstop2.Image = Global.DD_Record_Organiser.My.Resources.Resources.bell_go
diff --git a/app/DD-Record-Organiser/frmConfig_Basic.resx b/app/DD-Record-Organiser/frmConfig_Basic.resx
index 7f42ee6..38713d8 100644
--- a/app/DD-Record-Organiser/frmConfig_Basic.resx
+++ b/app/DD-Record-Organiser/frmConfig_Basic.resx
@@ -448,7 +448,7 @@
3, 3, 3, 3
- 687, 261
+ 687, 333
0
@@ -932,7 +932,7 @@
NoControl
- 6, 21
+ 10, 21
189, 17
@@ -1115,7 +1115,7 @@
3, 3, 3, 3
- 687, 261
+ 687, 333
1
@@ -1343,7 +1343,7 @@
3, 3, 3, 3
- 687, 261
+ 687, 333
2
@@ -1370,7 +1370,7 @@
0, 0
- 695, 287
+ 695, 359
0
@@ -1394,7 +1394,7 @@
6, 13
- 695, 287
+ 695, 359
Segoe UI, 8.25pt
@@ -1778,9 +1778,6 @@
mf8BAK//A8C3/wPgtf8DwLb/AIC2/wAAtf8AALX/AAC2/8ABtP/AA7D/8A+u/w==
-
- NoControl
-
CenterScreen
diff --git a/app/DD-Record-Organiser/frmConfig_Basic.vb b/app/DD-Record-Organiser/frmConfig_Basic.vb
index 9bc5885..e3b38bf 100644
--- a/app/DD-Record-Organiser/frmConfig_Basic.vb
+++ b/app/DD-Record-Organiser/frmConfig_Basic.vb
@@ -179,7 +179,6 @@ Public Class frmConfig_Basic
LogErrorsOnly = chkLogErrorsOnly.Checked
SaveMySettingsValue("LogErrorsOnly", LogErrorsOnly, "ConfigMain")
End Sub
-
Private Sub chkboxQuickMenue_CheckedChanged(sender As Object, e As EventArgs) Handles chkboxQuickMenue.CheckedChanged
Sett_ShowQuickMenue = chkboxQuickMenue.Checked
SaveMySettingsValue("Sett_ShowQuickMenue", Sett_ShowQuickMenue, "ConfigMain")
diff --git a/app/DD-Record-Organiser/frmConstructor_Main.resx b/app/DD-Record-Organiser/frmConstructor_Main.resx
index ffb3b81..664e2fc 100644
--- a/app/DD-Record-Organiser/frmConstructor_Main.resx
+++ b/app/DD-Record-Organiser/frmConstructor_Main.resx
@@ -193,7 +193,7 @@
Panel1
- 615, 17
+ 461, 17
Segoe UI, 9pt, style=Bold
@@ -298,7 +298,7 @@
0, 0
- 788, 248
+ 795, 248
0
@@ -373,7 +373,7 @@
0, 0
- 1069, 334
+ 1072, 338
0
@@ -391,7 +391,7 @@
0
- 1069, 334
+ 1072, 338
Detailansicht
@@ -409,7 +409,7 @@
0
- 1071, 362
+ 1078, 369
1
@@ -469,7 +469,7 @@
192, 255, 192
- 1069, 309
+ 1072, 313
7
@@ -522,7 +522,7 @@
1
- 179, 56
+ 17, 56
Segoe UI, 8.25pt, style=Bold, Italic
@@ -565,7 +565,7 @@
0, 0
- 1069, 25
+ 1072, 25
2
@@ -586,7 +586,7 @@
2
- 1069, 334
+ 1072, 338
windream-Dateien
@@ -1017,7 +1017,7 @@
2
- 1069, 334
+ 1072, 338
Wiedervorlage
@@ -1044,7 +1044,7 @@
Cyan
- 1069, 309
+ 1072, 313
0
@@ -1068,7 +1068,7 @@
0, 25
- 1069, 309
+ 1072, 313
2
@@ -1243,7 +1243,7 @@
0, 0
- 1069, 25
+ 1072, 25
1
@@ -1272,7 +1272,7 @@
- 1069, 334
+ 1072, 338
Positionen
@@ -1302,7 +1302,7 @@
0
- 911, 17
+ 757, 17
False
@@ -1484,7 +1484,7 @@
0, 0
- 1071, 25
+ 1078, 25
0
@@ -1589,7 +1589,7 @@
Panel2
- 1083, 387
+ 1083, 394
0
@@ -1634,7 +1634,7 @@
4
- 314, 17
+ 160, 17
@@ -1691,7 +1691,7 @@
6
- 171, 17
+ 17, 17
53, 17
@@ -1739,10 +1739,10 @@
5
- 480, 17
+ 326, 17
- 764, 17
+ 610, 17
@@ -1753,10 +1753,10 @@
- 1032, 17
+ 878, 17
- 17, 56
+ 979, 17
61, 4
@@ -1768,13 +1768,13 @@
System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
- 344, 56
+ 182, 56
- 634, 56
+ 472, 56
- 912, 56
+ 750, 56
17, 95
@@ -1792,7 +1792,7 @@
672, 95
- 487, 56
+ 325, 56
True
diff --git a/app/DD-Record-Organiser/frmConstructor_Main.vb b/app/DD-Record-Organiser/frmConstructor_Main.vb
index 3d1f5b9..b6eb295 100644
--- a/app/DD-Record-Organiser/frmConstructor_Main.vb
+++ b/app/DD-Record-Organiser/frmConstructor_Main.vb
@@ -131,6 +131,7 @@ Public Class frmConstructor_Main
Private FORMVIEW_ID As Integer
Private _ENTITYSQL As String
+ Private _VIEWNAME As String
Private _ENTITYSTRING As String
Private RESULT_DOC_PATH
@@ -577,6 +578,7 @@ Public Class frmConstructor_Main
Try
If GRID_TYPE = GridType.Grid Then
If LogErrorsOnly = False Then ClassLogger.Add(" >> GridType = Grid", False)
+ _VIEWNAME = "VWTEMP_PMO_FORM" & FormId.ToString
_ENTITYSQL = "SELECT T.* FROM VWTEMP_PMO_FORM" & FormId.ToString & " T"
Else 'Tiles und Carousel bekommen Quick View
_ENTITYSQL = String.Format("SELECT SQL_QUICK_VIEW FROM VWPMO_CONSTRUCTOR_FORMS WHERE CONSTRUCT_ID = {0} AND FORM_ID = {1} AND SCREEN_ID = {2}", ConstructorId, FormId, CURRENT_SCREEN_ID)
@@ -595,6 +597,7 @@ Public Class frmConstructor_Main
If LogErrorsOnly = False Then ClassLogger.Add(" >> Quick-View is configured", False)
End If
End If
+
Try
Dim sql = String.Format("SELECT COUNT(*) FROM TBPMO_CONSTRUCTOR_USER_SQL WHERE USER_ID = {0} AND CONSTR_DET_ID = {1} AND SQL_COMMAND IS NOT NULL AND SQL_COMMAND <> ''", USER_GUID, ConstructorDetailID)
Dim exists = ClassDatabase.Execute_Scalar(sql)
@@ -709,9 +712,16 @@ Public Class frmConstructor_Main
Me.Cursor = Cursors.Default
End Sub
Private Sub GridView_FocusedRowChanged(sender As Object, e As DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs) Handles grvwGrid.FocusedRowChanged, grvwTiles.FocusedRowChanged, grvwCarousel.FocusedRowChanged
+ Dim sw As New Stopwatch
+ sw.Start()
+ Dim elapsed As Double
Me.Cursor = Cursors.WaitCursor
Column_Row_Handler()
Me.Cursor = Cursors.Default
+ elapsed = sw.Elapsed.TotalSeconds
+ sw.Stop()
+ sw.Reset()
+ If LogErrorsOnly = False Then ClassLogger.Add(" >>>> GridView_FocusedRowChanged took " & Format(elapsed, "0.000000000") & " seconds", False)
'If dataloaded = True Then
' If LogErrorsOnly = False Then ClassLogger.Add(" >> grvwSelection_FocusedRowChanged - EditState: " & EDIT_STATE, False)
' Dim selRecID = GetSelected_RecordID()
@@ -728,7 +738,9 @@ Public Class frmConstructor_Main
End If
End Sub
Sub Column_Row_Handler()
-
+ Dim sw As New Stopwatch
+ sw.Start()
+ Dim elapsed As Double
If _FormClosing = True Then 'Or SaveRoutine_Active = True
Exit Sub
End If
@@ -774,30 +786,30 @@ Public Class frmConstructor_Main
Check_Record_Changed()
DisableEditMode()
VerknüpfungenAnzeigenToolStripMenuItem.Enabled = True
+ elapsed = sw.Elapsed.TotalSeconds
+ sw.Stop()
+ sw.Reset()
+ If LogErrorsOnly = False Then ClassLogger.Add(" >> Precheck Row took " & Format(elapsed, "0.000000000") & " seconds", False)
+ sw.Start()
' muss vor show selected record data kommen,
' sodass die datasource für die angehakten werte existiert (checked list box)
ClassControlValues.LoadControlValuesListWithPlaceholders(ENTITY_ID, Grid_RecordID, PARENT_ID, CtrlBuilder.AllControls, ENTITY_ID)
Show_Selected_Record_Data(Grid_RecordID, False)
-
+ Dim sw1 As New Stopwatch
+ sw1.Start()
Check_Rights()
+ elapsed = sw1.Elapsed.TotalSeconds
+ sw1.Stop()
+ If LogErrorsOnly = False Then ClassLogger.Add(" >> Check Rights took " & Format(elapsed, "0.000000000") & " seconds", False)
If TCDetails.SelectedTabPage Is Nothing Then
Exit Sub
End If
If TabPos.PageVisible = True And TCDetails.SelectedTabPage.Text.StartsWith("Posi") Then
Clear_GridPos_View()
Dim POS_GRID_RECORD = Get_Focused_Row_Cell_Value_pos("Record-ID")
- 'If Not IsNothing(POS_GRID_RECORD) Then
- ' If POS_GRID_RECORD <> POS_RECORD_ID Then
-
- ' End If
- 'Else
- ' Load_Pos_Data()
- ' Load_POSGrid_Layout()
- 'End If
Load_Pos_Data()
Load_POSGrid_Layout()
-
End If
If RECORD_ID > 0 Then
@@ -808,10 +820,10 @@ Public Class frmConstructor_Main
End If
End If
End If
-
-
-
-
+ elapsed = sw.Elapsed.TotalSeconds
+ sw.Stop()
+ sw.Reset()
+ If LogErrorsOnly = False Then ClassLogger.Add(" >>>> Column/Row Change took " & Format(elapsed, "0.000000000") & " seconds", False)
End Sub
Sub Check_Rights()
@@ -1090,8 +1102,6 @@ Public Class frmConstructor_Main
Sub Get_RecordCounts_Nodes()
Try
- Dim sw As New Stopwatch
- sw.Start()
Dim selnode As TreeNode = TreeViewMain.SelectedNode
Dim a As Integer = 0
For Each childNodeLevel1 As TreeNode In selnode.Nodes
@@ -1136,11 +1146,6 @@ Public Class frmConstructor_Main
End If
Next
- Dim elapsed As Double
- elapsed = sw.Elapsed.TotalSeconds
- sw.Stop()
- sw.Reset()
- If LogErrorsOnly = False Then ClassLogger.Add(" >> Get_RecordCounts_Nodes took " & Format(elapsed, "0.000000000") & " seconds", False)
Catch ex As Exception
MsgBox("Error in Get_RecordCounts_Nodes:" & vbNewLine & ex.Message, MsgBoxStyle.Exclamation)
End Try
@@ -1323,7 +1328,6 @@ Public Class frmConstructor_Main
tsButtonCancel.Visible = True
CURRENT_PARENT_ID = PARENT_ID
- ClassControlValues.LoadDefaultValues(ENTITY_ID, SELECTED_RECORD_ID, pnlDetails.Controls, CURRENT_PARENT_ID, ENTITY_ID)
' Den Record anlegen, damit wir eine RECORD_ID bekommen
ClassControlCommandsUI.CreateRecord(ENTITY_ID)
' Die RECORD_ID auslesen und setzen
@@ -1331,6 +1335,7 @@ Public Class frmConstructor_Main
CURRENT_RECORD_ID = NewRecordId
RECORD_ID = NewRecordId
SELECTED_RECORD_ID = NewRecordId
+ ClassControlValues.LoadDefaultValues(ENTITY_ID, SELECTED_RECORD_ID, pnlDetails.Controls, CURRENT_PARENT_ID, ENTITY_ID)
' Das StatusLabel aktualisieren
Update_Record_Label(NewRecordId)
' Im gegensatz zu EnableEditMode muss hier nur der save button enabled werden
@@ -1920,7 +1925,7 @@ Public Class frmConstructor_Main
_ENTITYSQL = _ENTITYSQL.ToString.Replace("@T2.RECORD1_ID", PARENT_RECORDID)
End If
Catch ex As Exception
-
+ ClassLogger.Add("Error in Replacing patterns in entity_sql: " & ex.Message)
End Try
Else
Console.WriteLine("Ebene 2 wurde nicht ausgewählt")
@@ -1994,9 +1999,32 @@ Public Class frmConstructor_Main
GridControlMain.Visible = True
Dim DTEntity As DataTable = ClassDatabase.Return_Datatable(_ENTITYSQL, "LoadEntityData - Get DTEntity")
+ DTEntity.TableName = "VWTEMP_PMO_FORM" & ENTITY_ID
If IsNothing(DTEntity) Then
MsgBox("Unexpected Error in getting Entity-Data - Check Logfile", MsgBoxStyle.Critical)
Else
+ Dim SQL_AutoValues = "SELECT GUID AS CONTROL_ID, CONNECTION_ID_1 AS CONNECTION_ID, SQL_COMMAND_1 AS SQL_COMMAND FROM TBPMO_CONTROL WHERE CONNECTION_ID_1 <> '' AND SQL_COMMAND_1 <> '' AND FORM_ID = " & ENTITY_ID
+ Dim DT_AUTOVALUES As DataTable = ClassDatabase.Return_Datatable(SQL_AutoValues, "LoadAutoValues")
+ CURRENT_SQL_AUTO_VALUES_DT = DT_AUTOVALUES
+
+ If USER_WAN = True Then
+ Dim MyDataset As DataSet = New DataSet("MY_DATASET")
+ MyDataset.Tables.Add(DTEntity)
+ Console.WriteLine(DTEntity.TableName)
+ CURRENT_ENTITY_DATATABLE = DTEntity
+ Dim SQL_VALUES As String = "SELECT * FROM VWPMO_VALUES WHERE RECORD_ID IN (SELECT [Record-ID] FROM VWTEMP_PMO_FORM" & ENTITY_ID & ")"
+
+ Dim DT_ControlValues As DataTable = ClassDatabase.Return_Datatable(SQL_VALUES, "LoadControlValues")
+
+ If Not IsNothing(DT_ControlValues) Then
+ DT_ControlValues.TableName = "VWTEMP_PMO_FORM" & ENTITY_ID & "_VALUES"
+ MyDataset.Tables.Add(DT_ControlValues)
+ CURRENT_ENTITY_VALUES_DT = DT_ControlValues
+ End If
+
+ End If
+
+
Dim primaryKey(1) As DataColumn
primaryKey(0) = DTEntity.Columns("Record-ID")
DTEntity.PrimaryKey = primaryKey
@@ -2563,9 +2591,6 @@ Public Class frmConstructor_Main
End Sub
Private Sub Show_Selected_Record_Data(Rec_ID As Integer, EntityLoad As Boolean)
Try
- Dim sw As New Stopwatch
- sw.Start()
-
Update_Status_Label(False, "")
If LogErrorsOnly = False Then ClassLogger.Add(" >> GRID_RECORD ID: " & Rec_ID.ToString, False)
'Me.pnlDetails.Visible = True
@@ -2639,17 +2664,11 @@ Public Class frmConstructor_Main
End If
Select Case TCDetails.SelectedTabPageIndex
Case 0
- Dim sw1 As New Stopwatch
- sw1.Start()
ENTITY_RELOAD_AFT_CONTROL_LOAD = False
CtrlBuilder.WatchRecordChanges = False
ClassControlValues.LoadControlValues(SELECTED_RECORD_ID, PARENT_ID, ENTITY_ID, CtrlBuilder.AllControls, ENTITY_ID)
CtrlBuilder.WatchRecordChanges = True
- Dim elapsed1 As Double
- elapsed1 = sw1.Elapsed.TotalSeconds
- sw1.Stop()
- sw1.Reset()
- If LogErrorsOnly = False Then ClassLogger.Add(" >> LoadControlValues took " & Format(elapsed1, "0.000000000") & " seconds", False)
+
If windream_Docshow = True Then
Dim stg As String = "windream-Dateien"
If USER_LANGUAGE <> "de-DE" Then
@@ -2672,7 +2691,8 @@ Public Class frmConstructor_Main
'ListBoxUser2Profile.Items.Clear()
grpbxFU_Profile.Enabled = False
End Select
-
+ Dim sw As New Stopwatch
+ sw.Start()
' Laden der Daten bedeutet nicht dass Daten vom Benutzer geändert wurden!
RECORD_CHANGED = False
@@ -2690,12 +2710,11 @@ Public Class frmConstructor_Main
Me.tsButtonShowWorkflowTasks.Enabled = True
Me.tsButtonShowTaskOverview.Enabled = True
RECORD_ID = SELECTED_RECORD_ID
-
Dim elapsed As Double
- elapsed = sw.Elapsed.TotalSeconds
+ elapsed = sw.Elapsed.TotalSeconds - elapsed
sw.Stop()
sw.Reset()
- If LogErrorsOnly = False Then ClassLogger.Add(" >> Show Selected RecordData took " & Format(elapsed, "0.000000000") & " seconds", False)
+ If LogErrorsOnly = False Then ClassLogger.Add(" >> Show Selected RecordData 2 took " & Format(elapsed, "0.000000000") & " seconds", False)
If ENTITY_RELOAD_AFT_CONTROL_LOAD = True Then
Reload_Entity_while_Control_Load()
End If
@@ -4700,12 +4719,6 @@ Public Class frmConstructor_Main
e.Appearance.BackColor = Color.Orange
End If
End Sub
-
-
-
- Private Sub grvwGrid_SelectionChanged(sender As Object, e As DevExpress.Data.SelectionChangedEventArgs) Handles grvwGrid.SelectionChanged
-
- End Sub
Private Sub grvwGrid_MouseDown(sender As Object, e As MouseEventArgs) Handles grvwGrid.MouseDown, grvwTiles.MouseDown, grvwCarousel.MouseDown
If e.Button = Windows.Forms.MouseButtons.Right Then
RightMouse_Clicked = True
@@ -4908,9 +4921,14 @@ Public Class frmConstructor_Main
SET_ROWCOUNT_STRING()
End Sub
Sub SET_ROWCOUNT_STRING()
- Dim nodetext = ACT_EBENE_STRING
- nodetext = nodetext & " (" & grvwGrid.RowCount & ")"
- TreeViewMain.SelectedNode.Text = nodetext
+ Dim selnode As TreeNode = TreeViewMain.SelectedNode
+ Dim origtext As String = selnode.Text
+ If origtext.Contains(" (") Then
+ Dim existingstring = origtext.Substring(0, origtext.IndexOf("(") - 1)
+ selnode.Text = String.Format("{0} ({1})", existingstring, grvwGrid.RowCount)
+ Else
+ selnode.Text = String.Format("{0} ({1})", selnode.Text, grvwGrid.RowCount)
+ End If
End Sub
Public Sub New()
' Dieser Aufruf ist für den Designer erforderlich.
diff --git a/app/DD-Record-Organiser/frmSAP_FuBa.vb b/app/DD-Record-Organiser/frmSAP_FuBa.vb
index c8900a1..1c32c79 100644
--- a/app/DD-Record-Organiser/frmSAP_FuBa.vb
+++ b/app/DD-Record-Organiser/frmSAP_FuBa.vb
@@ -141,7 +141,7 @@ Public Class frmSAP_FuBa
End If
'######
Dim i = 0
- Dim tablename = "[DD_ECM].[dbo].[TPPMO_SAPFUBA_ " & TempTableNameTextBox.Text & "]"
+ Dim tablename = "[TPPMO_SAPFUBA_" & TempTableNameTextBox.Text & "]"
Dim createtablesql = "CREATE TABLE TPPMO_SAPFUBA_" & TempTableNameTextBox.Text & " ("
@@ -157,11 +157,15 @@ Public Class frmSAP_FuBa
Dim check = String.Format("SELECT 1 FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE='BASE TABLE' AND TABLE_NAME='{0}'", tablename)
If ClassDatabase.Execute_Scalar(check) = 1 Then
+ If LogErrorsOnly = False Then ClassLogger.Add(">> TempTable " & tablename & " exists and will now be deleted!", False)
' ClassDatabase.Execute_non_Query_withConn("DROP TABLE " & tablename, 1)
End If
''Die Tabelle anlegen
If LogErrorsOnly = False Then ClassLogger.Add(">> Create Table: " & createtablesql, False)
+ ClassDatabase.Execute_non_Query_withConn(createtablesql, 1)
+ Dim del = "delete from " & tablename
+ ClassDatabase.Execute_non_Query_withConn(del, 1)
'If ClassDatabase.Execute_non_Query_withConn(createtablesql, 1) = False Then
' Me.Cursor = Cursors.Default
' MsgBox("Error while creating the temporary table. Please check the logfile!", MsgBoxStyle.Critical)
@@ -170,15 +174,29 @@ Public Class frmSAP_FuBa
Dim ins = "Insert into " & tablename & "("
Dim DT As DataTable = ClassDatabase.Return_Datatable("SELECT * FROM " & tablename)
If Not IsNothing(DT) Then
- Dim i As Integer = 0
- For Each DataColumn In DT.Columns
-ins = ins &
+ Dim anz As Integer = 0
+ For Each col As DataColumn In DT.Columns
+ If anz = 0 Then
+ ins = ins & col.ColumnName
+ Else
+ ins = ins & ", " & col.ColumnName
+ End If
+ anz += 1
Next
+ ins = ins & ") VALUES ("
End If
Try
- For Each row As DataRow In SAPResulttable.Rows
-
- Next
+ 'For Each row As DataRow In SAPResulttable.Rows
+ ' For x = 0 To CURRENT_COL_COUNT
+ ' If x = 0 Then
+ ' ins = ins & "'" & row.Item(x).ToString & "', "
+ ' Else
+ ' ins = ins & "'" & row.Item(x).ToString & "'"
+ ' End If
+ ' ins = ins & ")"
+ ' Next
+ ' ClassDatabase.Execute_non_Query_withConn(ins, 1)
+ 'Next
Dim OwnerCS As String
OwnerCS = ClassDatabase.GetConnectionString(1)
Dim SQLconnect As New SqlClient.SqlConnection
diff --git a/app/DD-Record-Organiser/frmUserKonfig.Designer.vb b/app/DD-Record-Organiser/frmUserKonfig.Designer.vb
index d8cef2d..d955aa9 100644
--- a/app/DD-Record-Organiser/frmUserKonfig.Designer.vb
+++ b/app/DD-Record-Organiser/frmUserKonfig.Designer.vb
@@ -209,6 +209,7 @@ Partial Class frmUserKonfig
Me.colEMAIL = New DevExpress.XtraGrid.Columns.GridColumn()
Me.SHORTNAMETextBox1 = New System.Windows.Forms.TextBox()
Me.COMMENTTextBox2 = New System.Windows.Forms.TextBox()
+ Me.WAN_ENVIRONMENTCheckBox = New System.Windows.Forms.CheckBox()
GUIDLabel = New System.Windows.Forms.Label()
PRENAMELabel = New System.Windows.Forms.Label()
NAMELabel = New System.Windows.Forms.Label()
@@ -483,13 +484,13 @@ Partial Class frmUserKonfig
'
'TBDD_USERBindingNavigator
'
- resources.ApplyResources(Me.TBDD_USERBindingNavigator, "TBDD_USERBindingNavigator")
Me.TBDD_USERBindingNavigator.AddNewItem = Me.BindingNavigatorAddNewItem
Me.TBDD_USERBindingNavigator.BindingSource = Me.TBDD_USERBindingSource
Me.TBDD_USERBindingNavigator.CountItem = Me.BindingNavigatorCountItem
Me.TBDD_USERBindingNavigator.CountItemFormat = "von {0} Usern"
Me.TBDD_USERBindingNavigator.DeleteItem = Me.BindingNavigatorDeleteItem
Me.TBDD_USERBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem, Me.BindingNavigatorMovePreviousItem, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, Me.BindingNavigatorMoveNextItem, Me.BindingNavigatorMoveLastItem, Me.BindingNavigatorSeparator2, Me.BindingNavigatorAddNewItem, Me.BindingNavigatorDeleteItem, Me.TBDD_USERBindingNavigatorSaveItem, Me.tbRefreshUsers, Me.tsAddUser})
+ resources.ApplyResources(Me.TBDD_USERBindingNavigator, "TBDD_USERBindingNavigator")
Me.TBDD_USERBindingNavigator.MoveFirstItem = Me.BindingNavigatorMoveFirstItem
Me.TBDD_USERBindingNavigator.MoveLastItem = Me.BindingNavigatorMoveLastItem
Me.TBDD_USERBindingNavigator.MoveNextItem = Me.BindingNavigatorMoveNextItem
@@ -499,37 +500,37 @@ Partial Class frmUserKonfig
'
'BindingNavigatorAddNewItem
'
- resources.ApplyResources(Me.BindingNavigatorAddNewItem, "BindingNavigatorAddNewItem")
Me.BindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.BindingNavigatorAddNewItem, "BindingNavigatorAddNewItem")
Me.BindingNavigatorAddNewItem.Name = "BindingNavigatorAddNewItem"
'
'BindingNavigatorCountItem
'
- resources.ApplyResources(Me.BindingNavigatorCountItem, "BindingNavigatorCountItem")
Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
+ resources.ApplyResources(Me.BindingNavigatorCountItem, "BindingNavigatorCountItem")
'
'BindingNavigatorDeleteItem
'
- resources.ApplyResources(Me.BindingNavigatorDeleteItem, "BindingNavigatorDeleteItem")
Me.BindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.BindingNavigatorDeleteItem, "BindingNavigatorDeleteItem")
Me.BindingNavigatorDeleteItem.Name = "BindingNavigatorDeleteItem"
'
'BindingNavigatorMoveFirstItem
'
- resources.ApplyResources(Me.BindingNavigatorMoveFirstItem, "BindingNavigatorMoveFirstItem")
Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.BindingNavigatorMoveFirstItem, "BindingNavigatorMoveFirstItem")
Me.BindingNavigatorMoveFirstItem.Name = "BindingNavigatorMoveFirstItem"
'
'BindingNavigatorMovePreviousItem
'
- resources.ApplyResources(Me.BindingNavigatorMovePreviousItem, "BindingNavigatorMovePreviousItem")
Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.BindingNavigatorMovePreviousItem, "BindingNavigatorMovePreviousItem")
Me.BindingNavigatorMovePreviousItem.Name = "BindingNavigatorMovePreviousItem"
'
'BindingNavigatorSeparator
'
- resources.ApplyResources(Me.BindingNavigatorSeparator, "BindingNavigatorSeparator")
Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
+ resources.ApplyResources(Me.BindingNavigatorSeparator, "BindingNavigatorSeparator")
'
'BindingNavigatorPositionItem
'
@@ -538,145 +539,145 @@ Partial Class frmUserKonfig
'
'BindingNavigatorSeparator1
'
- resources.ApplyResources(Me.BindingNavigatorSeparator1, "BindingNavigatorSeparator1")
Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
+ resources.ApplyResources(Me.BindingNavigatorSeparator1, "BindingNavigatorSeparator1")
'
'BindingNavigatorMoveNextItem
'
- resources.ApplyResources(Me.BindingNavigatorMoveNextItem, "BindingNavigatorMoveNextItem")
Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.BindingNavigatorMoveNextItem, "BindingNavigatorMoveNextItem")
Me.BindingNavigatorMoveNextItem.Name = "BindingNavigatorMoveNextItem"
'
'BindingNavigatorMoveLastItem
'
- resources.ApplyResources(Me.BindingNavigatorMoveLastItem, "BindingNavigatorMoveLastItem")
Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.BindingNavigatorMoveLastItem, "BindingNavigatorMoveLastItem")
Me.BindingNavigatorMoveLastItem.Name = "BindingNavigatorMoveLastItem"
'
'BindingNavigatorSeparator2
'
- resources.ApplyResources(Me.BindingNavigatorSeparator2, "BindingNavigatorSeparator2")
Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
+ resources.ApplyResources(Me.BindingNavigatorSeparator2, "BindingNavigatorSeparator2")
'
'TBDD_USERBindingNavigatorSaveItem
'
- resources.ApplyResources(Me.TBDD_USERBindingNavigatorSaveItem, "TBDD_USERBindingNavigatorSaveItem")
Me.TBDD_USERBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.TBDD_USERBindingNavigatorSaveItem, "TBDD_USERBindingNavigatorSaveItem")
Me.TBDD_USERBindingNavigatorSaveItem.Name = "TBDD_USERBindingNavigatorSaveItem"
'
'tbRefreshUsers
'
- resources.ApplyResources(Me.tbRefreshUsers, "tbRefreshUsers")
Me.tbRefreshUsers.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.tbRefreshUsers.Image = Global.DD_Record_Organiser.My.Resources.Resources.refresh_16xLG
+ resources.ApplyResources(Me.tbRefreshUsers, "tbRefreshUsers")
Me.tbRefreshUsers.Name = "tbRefreshUsers"
'
'tsAddUser
'
- resources.ApplyResources(Me.tsAddUser, "tsAddUser")
Me.tsAddUser.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right
Me.tsAddUser.Image = Global.DD_Record_Organiser.My.Resources.Resources.benutzer3
+ resources.ApplyResources(Me.tsAddUser, "tsAddUser")
Me.tsAddUser.Name = "tsAddUser"
'
'USER_GUIDTextBox
'
- resources.ApplyResources(Me.USER_GUIDTextBox, "USER_GUIDTextBox")
Me.USER_GUIDTextBox.BackColor = System.Drawing.Color.WhiteSmoke
Me.USER_GUIDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "GUID", True))
+ resources.ApplyResources(Me.USER_GUIDTextBox, "USER_GUIDTextBox")
Me.USER_GUIDTextBox.Name = "USER_GUIDTextBox"
Me.USER_GUIDTextBox.ReadOnly = True
'
'PRENAMETextBox
'
- resources.ApplyResources(Me.PRENAMETextBox, "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"
'
'NAMETextBox
'
- resources.ApplyResources(Me.NAMETextBox, "NAMETextBox")
Me.NAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "NAME", True))
+ resources.ApplyResources(Me.NAMETextBox, "NAMETextBox")
Me.NAMETextBox.Name = "NAMETextBox"
'
'USERNAMETextBox
'
- resources.ApplyResources(Me.USERNAMETextBox, "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"
'
'EMAILTextBox
'
- resources.ApplyResources(Me.EMAILTextBox, "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"
'
'LOGGED_INCheckBox
'
- resources.ApplyResources(Me.LOGGED_INCheckBox, "LOGGED_INCheckBox")
Me.LOGGED_INCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_USERBindingSource, "LOGGED_IN", True))
+ resources.ApplyResources(Me.LOGGED_INCheckBox, "LOGGED_INCheckBox")
Me.LOGGED_INCheckBox.Name = "LOGGED_INCheckBox"
Me.LOGGED_INCheckBox.UseVisualStyleBackColor = True
'
'LOGGED_WHERETextBox
'
- resources.ApplyResources(Me.LOGGED_WHERETextBox, "LOGGED_WHERETextBox")
Me.LOGGED_WHERETextBox.BackColor = System.Drawing.Color.WhiteSmoke
Me.LOGGED_WHERETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "LOGGED_WHERE", True))
+ resources.ApplyResources(Me.LOGGED_WHERETextBox, "LOGGED_WHERETextBox")
Me.LOGGED_WHERETextBox.Name = "LOGGED_WHERETextBox"
Me.LOGGED_WHERETextBox.ReadOnly = True
'
'LOG_IN_WHENTextBox
'
- resources.ApplyResources(Me.LOG_IN_WHENTextBox, "LOG_IN_WHENTextBox")
Me.LOG_IN_WHENTextBox.BackColor = System.Drawing.Color.WhiteSmoke
Me.LOG_IN_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "LOG_IN_WHEN", True))
+ resources.ApplyResources(Me.LOG_IN_WHENTextBox, "LOG_IN_WHENTextBox")
Me.LOG_IN_WHENTextBox.Name = "LOG_IN_WHENTextBox"
Me.LOG_IN_WHENTextBox.ReadOnly = True
'
'LOG_OUT_WHENTextBox
'
- resources.ApplyResources(Me.LOG_OUT_WHENTextBox, "LOG_OUT_WHENTextBox")
Me.LOG_OUT_WHENTextBox.BackColor = System.Drawing.Color.WhiteSmoke
Me.LOG_OUT_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "LOG_OUT_WHEN", True))
+ resources.ApplyResources(Me.LOG_OUT_WHENTextBox, "LOG_OUT_WHENTextBox")
Me.LOG_OUT_WHENTextBox.Name = "LOG_OUT_WHENTextBox"
Me.LOG_OUT_WHENTextBox.ReadOnly = True
'
'RECORG_ADMINCheckBox
'
- resources.ApplyResources(Me.RECORG_ADMINCheckBox, "RECORG_ADMINCheckBox")
Me.RECORG_ADMINCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_USERBindingSource, "RECORD_ADMIN", True))
+ resources.ApplyResources(Me.RECORG_ADMINCheckBox, "RECORG_ADMINCheckBox")
Me.RECORG_ADMINCheckBox.Name = "RECORG_ADMINCheckBox"
Me.RECORG_ADMINCheckBox.UseVisualStyleBackColor = True
'
'ADDED_WHOTextBox
'
- resources.ApplyResources(Me.ADDED_WHOTextBox, "ADDED_WHOTextBox")
Me.ADDED_WHOTextBox.BackColor = System.Drawing.Color.WhiteSmoke
Me.ADDED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "ADDED_WHO", True))
+ resources.ApplyResources(Me.ADDED_WHOTextBox, "ADDED_WHOTextBox")
Me.ADDED_WHOTextBox.Name = "ADDED_WHOTextBox"
Me.ADDED_WHOTextBox.ReadOnly = True
'
'ADDED_WHENTextBox
'
- resources.ApplyResources(Me.ADDED_WHENTextBox, "ADDED_WHENTextBox")
Me.ADDED_WHENTextBox.BackColor = System.Drawing.Color.WhiteSmoke
Me.ADDED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "ADDED_WHEN", True))
+ resources.ApplyResources(Me.ADDED_WHENTextBox, "ADDED_WHENTextBox")
Me.ADDED_WHENTextBox.Name = "ADDED_WHENTextBox"
Me.ADDED_WHENTextBox.ReadOnly = True
'
'CHANGED_WHOTextBox
'
- resources.ApplyResources(Me.CHANGED_WHOTextBox, "CHANGED_WHOTextBox")
Me.CHANGED_WHOTextBox.BackColor = System.Drawing.Color.WhiteSmoke
Me.CHANGED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "CHANGED_WHO", True))
+ resources.ApplyResources(Me.CHANGED_WHOTextBox, "CHANGED_WHOTextBox")
Me.CHANGED_WHOTextBox.Name = "CHANGED_WHOTextBox"
Me.CHANGED_WHOTextBox.ReadOnly = True
'
'CHANGED_WHENTextBox
'
- resources.ApplyResources(Me.CHANGED_WHENTextBox, "CHANGED_WHENTextBox")
Me.CHANGED_WHENTextBox.BackColor = System.Drawing.Color.WhiteSmoke
Me.CHANGED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "CHANGED_WHEN", True))
+ resources.ApplyResources(Me.CHANGED_WHENTextBox, "CHANGED_WHENTextBox")
Me.CHANGED_WHENTextBox.Name = "CHANGED_WHENTextBox"
Me.CHANGED_WHENTextBox.ReadOnly = True
'
@@ -695,21 +696,21 @@ Partial Class frmUserKonfig
'
'TabControl1
'
- resources.ApplyResources(Me.TabControl1, "TabControl1")
Me.TabControl1.Controls.Add(Me.TabPage1)
Me.TabControl1.Controls.Add(Me.TabPage2)
+ resources.ApplyResources(Me.TabControl1, "TabControl1")
Me.TabControl1.Name = "TabControl1"
Me.TabControl1.SelectedIndex = 0
'
'TabPage1
'
- resources.ApplyResources(Me.TabPage1, "TabPage1")
Me.TabPage1.Controls.Add(Me.Label1)
Me.TabPage1.Controls.Add(Me.btnRemoveUserFromGroup)
Me.TabPage1.Controls.Add(Me.cmbGroup)
Me.TabPage1.Controls.Add(Me.Label2)
Me.TabPage1.Controls.Add(Me.btnAddUserToGroup)
Me.TabPage1.Controls.Add(Me.lbGroups)
+ resources.ApplyResources(Me.TabPage1, "TabPage1")
Me.TabPage1.Name = "TabPage1"
Me.TabPage1.UseVisualStyleBackColor = True
'
@@ -720,17 +721,17 @@ Partial Class frmUserKonfig
'
'btnRemoveUserFromGroup
'
- resources.ApplyResources(Me.btnRemoveUserFromGroup, "btnRemoveUserFromGroup")
Me.btnRemoveUserFromGroup.Image = Global.DD_Record_Organiser.My.Resources.Resources.delete
+ resources.ApplyResources(Me.btnRemoveUserFromGroup, "btnRemoveUserFromGroup")
Me.btnRemoveUserFromGroup.Name = "btnRemoveUserFromGroup"
Me.btnRemoveUserFromGroup.UseVisualStyleBackColor = True
'
'cmbGroup
'
- resources.ApplyResources(Me.cmbGroup, "cmbGroup")
Me.cmbGroup.DataSource = Me.TBDD_USER_GROUPSBindingSource
Me.cmbGroup.DisplayMember = "NAME"
Me.cmbGroup.FormattingEnabled = True
+ resources.ApplyResources(Me.cmbGroup, "cmbGroup")
Me.cmbGroup.Name = "cmbGroup"
Me.cmbGroup.ValueMember = "GUID"
'
@@ -746,8 +747,8 @@ Partial Class frmUserKonfig
'
'btnAddUserToGroup
'
- resources.ApplyResources(Me.btnAddUserToGroup, "btnAddUserToGroup")
Me.btnAddUserToGroup.Image = Global.DD_Record_Organiser.My.Resources.Resources.add1
+ resources.ApplyResources(Me.btnAddUserToGroup, "btnAddUserToGroup")
Me.btnAddUserToGroup.Name = "btnAddUserToGroup"
Me.btnAddUserToGroup.UseVisualStyleBackColor = True
'
@@ -776,18 +777,6 @@ Partial Class frmUserKonfig
'
resources.ApplyResources(Me.GridControlWH_Users1, "GridControlWH_Users1")
Me.GridControlWH_Users1.DataSource = Me.TBWH_Users1BindingSource
- Me.GridControlWH_Users1.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridControlWH_Users1.EmbeddedNavigator.AccessibleDescription")
- Me.GridControlWH_Users1.EmbeddedNavigator.AccessibleName = resources.GetString("GridControlWH_Users1.EmbeddedNavigator.AccessibleName")
- Me.GridControlWH_Users1.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridControlWH_Users1.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
- Me.GridControlWH_Users1.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridControlWH_Users1.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
- Me.GridControlWH_Users1.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridControlWH_Users1.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
- Me.GridControlWH_Users1.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridControlWH_Users1.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
- Me.GridControlWH_Users1.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridControlWH_Users1.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
- Me.GridControlWH_Users1.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridControlWH_Users1.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
- Me.GridControlWH_Users1.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridControlWH_Users1.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
- Me.GridControlWH_Users1.EmbeddedNavigator.ToolTip = resources.GetString("GridControlWH_Users1.EmbeddedNavigator.ToolTip")
- Me.GridControlWH_Users1.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridControlWH_Users1.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
- Me.GridControlWH_Users1.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridControlWH_Users1.EmbeddedNavigator.ToolTipTitle")
Me.GridControlWH_Users1.MainView = Me.GridViewWH_Users1
Me.GridControlWH_Users1.Name = "GridControlWH_Users1"
Me.GridControlWH_Users1.ShowOnlyPredefinedDetails = True
@@ -806,18 +795,9 @@ Partial Class frmUserKonfig
'GridViewWH_Users1
'
Me.GridViewWH_Users1.Appearance.EvenRow.BackColor = CType(resources.GetObject("GridViewWH_Users1.Appearance.EvenRow.BackColor"), System.Drawing.Color)
- Me.GridViewWH_Users1.Appearance.EvenRow.FontSizeDelta = CType(resources.GetObject("GridViewWH_Users1.Appearance.EvenRow.FontSizeDelta"), Integer)
- Me.GridViewWH_Users1.Appearance.EvenRow.FontStyleDelta = CType(resources.GetObject("GridViewWH_Users1.Appearance.EvenRow.FontStyleDelta"), System.Drawing.FontStyle)
- Me.GridViewWH_Users1.Appearance.EvenRow.GradientMode = CType(resources.GetObject("GridViewWH_Users1.Appearance.EvenRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
- Me.GridViewWH_Users1.Appearance.EvenRow.Image = CType(resources.GetObject("GridViewWH_Users1.Appearance.EvenRow.Image"), System.Drawing.Image)
Me.GridViewWH_Users1.Appearance.EvenRow.Options.UseBackColor = True
Me.GridViewWH_Users1.Appearance.FocusedRow.BackColor = CType(resources.GetObject("GridViewWH_Users1.Appearance.FocusedRow.BackColor"), System.Drawing.Color)
- Me.GridViewWH_Users1.Appearance.FocusedRow.FontSizeDelta = CType(resources.GetObject("GridViewWH_Users1.Appearance.FocusedRow.FontSizeDelta"), Integer)
- Me.GridViewWH_Users1.Appearance.FocusedRow.FontStyleDelta = CType(resources.GetObject("GridViewWH_Users1.Appearance.FocusedRow.FontStyleDelta"), System.Drawing.FontStyle)
- Me.GridViewWH_Users1.Appearance.FocusedRow.GradientMode = CType(resources.GetObject("GridViewWH_Users1.Appearance.FocusedRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
- Me.GridViewWH_Users1.Appearance.FocusedRow.Image = CType(resources.GetObject("GridViewWH_Users1.Appearance.FocusedRow.Image"), System.Drawing.Image)
Me.GridViewWH_Users1.Appearance.FocusedRow.Options.UseBackColor = True
- resources.ApplyResources(Me.GridViewWH_Users1, "GridViewWH_Users1")
Me.GridViewWH_Users1.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.GridColumn3, Me.GridColumn4, Me.GridColumn5, Me.GridColumn6})
Me.GridViewWH_Users1.GridControl = Me.GridControlWH_Users1
Me.GridViewWH_Users1.Name = "GridViewWH_Users1"
@@ -838,21 +818,20 @@ Partial Class frmUserKonfig
'
'GridColumn4
'
- resources.ApplyResources(Me.GridColumn4, "GridColumn4")
Me.GridColumn4.FieldName = "Username"
Me.GridColumn4.Name = "GridColumn4"
Me.GridColumn4.OptionsColumn.AllowEdit = False
+ resources.ApplyResources(Me.GridColumn4, "GridColumn4")
'
'GridColumn5
'
- resources.ApplyResources(Me.GridColumn5, "GridColumn5")
Me.GridColumn5.FieldName = "Email"
Me.GridColumn5.Name = "GridColumn5"
Me.GridColumn5.OptionsColumn.AllowEdit = False
+ resources.ApplyResources(Me.GridColumn5, "GridColumn5")
'
'GridColumn6
'
- resources.ApplyResources(Me.GridColumn6, "GridColumn6")
Me.GridColumn6.FieldName = "ID"
Me.GridColumn6.Name = "GridColumn6"
'
@@ -860,18 +839,6 @@ Partial Class frmUserKonfig
'
resources.ApplyResources(Me.GridControlUsers2Group, "GridControlUsers2Group")
Me.GridControlUsers2Group.DataSource = Me.TBAD_UsersBindingSource
- Me.GridControlUsers2Group.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridControlUsers2Group.EmbeddedNavigator.AccessibleDescription")
- Me.GridControlUsers2Group.EmbeddedNavigator.AccessibleName = resources.GetString("GridControlUsers2Group.EmbeddedNavigator.AccessibleName")
- Me.GridControlUsers2Group.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridControlUsers2Group.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
- Me.GridControlUsers2Group.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridControlUsers2Group.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
- Me.GridControlUsers2Group.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridControlUsers2Group.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
- Me.GridControlUsers2Group.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridControlUsers2Group.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
- Me.GridControlUsers2Group.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridControlUsers2Group.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
- Me.GridControlUsers2Group.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridControlUsers2Group.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
- Me.GridControlUsers2Group.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridControlUsers2Group.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
- Me.GridControlUsers2Group.EmbeddedNavigator.ToolTip = resources.GetString("GridControlUsers2Group.EmbeddedNavigator.ToolTip")
- Me.GridControlUsers2Group.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridControlUsers2Group.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
- Me.GridControlUsers2Group.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridControlUsers2Group.EmbeddedNavigator.ToolTipTitle")
Me.GridControlUsers2Group.MainView = Me.GridViewlUsers2Group
Me.GridControlUsers2Group.Name = "GridControlUsers2Group"
Me.GridControlUsers2Group.ShowOnlyPredefinedDetails = True
@@ -885,18 +852,9 @@ Partial Class frmUserKonfig
'GridViewlUsers2Group
'
Me.GridViewlUsers2Group.Appearance.EvenRow.BackColor = CType(resources.GetObject("GridViewlUsers2Group.Appearance.EvenRow.BackColor"), System.Drawing.Color)
- Me.GridViewlUsers2Group.Appearance.EvenRow.FontSizeDelta = CType(resources.GetObject("GridViewlUsers2Group.Appearance.EvenRow.FontSizeDelta"), Integer)
- Me.GridViewlUsers2Group.Appearance.EvenRow.FontStyleDelta = CType(resources.GetObject("GridViewlUsers2Group.Appearance.EvenRow.FontStyleDelta"), System.Drawing.FontStyle)
- Me.GridViewlUsers2Group.Appearance.EvenRow.GradientMode = CType(resources.GetObject("GridViewlUsers2Group.Appearance.EvenRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
- Me.GridViewlUsers2Group.Appearance.EvenRow.Image = CType(resources.GetObject("GridViewlUsers2Group.Appearance.EvenRow.Image"), System.Drawing.Image)
Me.GridViewlUsers2Group.Appearance.EvenRow.Options.UseBackColor = True
Me.GridViewlUsers2Group.Appearance.FocusedRow.BackColor = CType(resources.GetObject("GridViewlUsers2Group.Appearance.FocusedRow.BackColor"), System.Drawing.Color)
- Me.GridViewlUsers2Group.Appearance.FocusedRow.FontSizeDelta = CType(resources.GetObject("GridViewlUsers2Group.Appearance.FocusedRow.FontSizeDelta"), Integer)
- Me.GridViewlUsers2Group.Appearance.FocusedRow.FontStyleDelta = CType(resources.GetObject("GridViewlUsers2Group.Appearance.FocusedRow.FontStyleDelta"), System.Drawing.FontStyle)
- Me.GridViewlUsers2Group.Appearance.FocusedRow.GradientMode = CType(resources.GetObject("GridViewlUsers2Group.Appearance.FocusedRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
- Me.GridViewlUsers2Group.Appearance.FocusedRow.Image = CType(resources.GetObject("GridViewlUsers2Group.Appearance.FocusedRow.Image"), System.Drawing.Image)
Me.GridViewlUsers2Group.Appearance.FocusedRow.Options.UseBackColor = True
- resources.ApplyResources(Me.GridViewlUsers2Group, "GridViewlUsers2Group")
Me.GridViewlUsers2Group.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colSelect, Me.GridColumn1, Me.GridColumn2, Me.colID})
Me.GridViewlUsers2Group.GridControl = Me.GridControlUsers2Group
Me.GridViewlUsers2Group.Name = "GridViewlUsers2Group"
@@ -917,28 +875,27 @@ Partial Class frmUserKonfig
'
'GridColumn1
'
- resources.ApplyResources(Me.GridColumn1, "GridColumn1")
Me.GridColumn1.FieldName = "Username"
Me.GridColumn1.Name = "GridColumn1"
Me.GridColumn1.OptionsColumn.AllowEdit = False
+ resources.ApplyResources(Me.GridColumn1, "GridColumn1")
'
'GridColumn2
'
- resources.ApplyResources(Me.GridColumn2, "GridColumn2")
Me.GridColumn2.FieldName = "Email"
Me.GridColumn2.Name = "GridColumn2"
Me.GridColumn2.OptionsColumn.AllowEdit = False
+ resources.ApplyResources(Me.GridColumn2, "GridColumn2")
'
'colID
'
- resources.ApplyResources(Me.colID, "colID")
Me.colID.FieldName = "ID"
Me.colID.Name = "colID"
'
'btndeleteUserfromGroup
'
- resources.ApplyResources(Me.btndeleteUserfromGroup, "btndeleteUserfromGroup")
Me.btndeleteUserfromGroup.Image = Global.DD_Record_Organiser.My.Resources.Resources.delete
+ resources.ApplyResources(Me.btndeleteUserfromGroup, "btndeleteUserfromGroup")
Me.btndeleteUserfromGroup.Name = "btndeleteUserfromGroup"
Me.btndeleteUserfromGroup.UseVisualStyleBackColor = True
'
@@ -949,8 +906,8 @@ Partial Class frmUserKonfig
'
'btnaddSelectedUser2Group
'
- resources.ApplyResources(Me.btnaddSelectedUser2Group, "btnaddSelectedUser2Group")
Me.btnaddSelectedUser2Group.Image = Global.DD_Record_Organiser.My.Resources.Resources.add1
+ resources.ApplyResources(Me.btnaddSelectedUser2Group, "btnaddSelectedUser2Group")
Me.btnaddSelectedUser2Group.Name = "btnaddSelectedUser2Group"
Me.btnaddSelectedUser2Group.UseVisualStyleBackColor = True
'
@@ -966,16 +923,15 @@ Partial Class frmUserKonfig
'
'cmbGroups_Group2User
'
- resources.ApplyResources(Me.cmbGroups_Group2User, "cmbGroups_Group2User")
Me.cmbGroups_Group2User.DataSource = Me.TBDD_USER_GROUPSBindingSource
Me.cmbGroups_Group2User.DisplayMember = "NAME"
Me.cmbGroups_Group2User.FormattingEnabled = True
+ resources.ApplyResources(Me.cmbGroups_Group2User, "cmbGroups_Group2User")
Me.cmbGroups_Group2User.Name = "cmbGroups_Group2User"
Me.cmbGroups_Group2User.ValueMember = "GUID"
'
'TabGruppendefinition
'
- resources.ApplyResources(Me.TabGruppendefinition, "TabGruppendefinition")
Me.TabGruppendefinition.Controls.Add(Me.GridControl2)
Me.TabGruppendefinition.Controls.Add(COMMENTLabel)
Me.TabGruppendefinition.Controls.Add(Me.COMMENTTextBox)
@@ -993,23 +949,12 @@ Partial Class frmUserKonfig
Me.TabGruppendefinition.Controls.Add(Me.CHANGED_WHENTextBox1)
Me.TabGruppendefinition.Controls.Add(Me.BindingNavigator1)
Me.TabGruppendefinition.Name = "TabGruppendefinition"
+ resources.ApplyResources(Me.TabGruppendefinition, "TabGruppendefinition")
'
'GridControl2
'
resources.ApplyResources(Me.GridControl2, "GridControl2")
Me.GridControl2.DataSource = Me.TBDD_USER_GROUPSBindingSource
- Me.GridControl2.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridControl2.EmbeddedNavigator.AccessibleDescription")
- Me.GridControl2.EmbeddedNavigator.AccessibleName = resources.GetString("GridControl2.EmbeddedNavigator.AccessibleName")
- Me.GridControl2.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridControl2.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
- Me.GridControl2.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridControl2.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
- Me.GridControl2.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridControl2.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
- Me.GridControl2.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridControl2.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
- Me.GridControl2.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridControl2.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
- Me.GridControl2.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridControl2.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
- Me.GridControl2.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridControl2.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
- Me.GridControl2.EmbeddedNavigator.ToolTip = resources.GetString("GridControl2.EmbeddedNavigator.ToolTip")
- Me.GridControl2.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridControl2.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
- Me.GridControl2.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridControl2.EmbeddedNavigator.ToolTipTitle")
Me.GridControl2.MainView = Me.GridView2
Me.GridControl2.Name = "GridControl2"
Me.GridControl2.ShowOnlyPredefinedDetails = True
@@ -1018,18 +963,9 @@ Partial Class frmUserKonfig
'GridView2
'
Me.GridView2.Appearance.EvenRow.BackColor = CType(resources.GetObject("GridView2.Appearance.EvenRow.BackColor"), System.Drawing.Color)
- Me.GridView2.Appearance.EvenRow.FontSizeDelta = CType(resources.GetObject("GridView2.Appearance.EvenRow.FontSizeDelta"), Integer)
- Me.GridView2.Appearance.EvenRow.FontStyleDelta = CType(resources.GetObject("GridView2.Appearance.EvenRow.FontStyleDelta"), System.Drawing.FontStyle)
- Me.GridView2.Appearance.EvenRow.GradientMode = CType(resources.GetObject("GridView2.Appearance.EvenRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
- Me.GridView2.Appearance.EvenRow.Image = CType(resources.GetObject("GridView2.Appearance.EvenRow.Image"), System.Drawing.Image)
Me.GridView2.Appearance.EvenRow.Options.UseBackColor = True
Me.GridView2.Appearance.FocusedRow.BackColor = CType(resources.GetObject("GridView2.Appearance.FocusedRow.BackColor"), System.Drawing.Color)
- Me.GridView2.Appearance.FocusedRow.FontSizeDelta = CType(resources.GetObject("GridView2.Appearance.FocusedRow.FontSizeDelta"), Integer)
- Me.GridView2.Appearance.FocusedRow.FontStyleDelta = CType(resources.GetObject("GridView2.Appearance.FocusedRow.FontStyleDelta"), System.Drawing.FontStyle)
- Me.GridView2.Appearance.FocusedRow.GradientMode = CType(resources.GetObject("GridView2.Appearance.FocusedRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
- Me.GridView2.Appearance.FocusedRow.Image = CType(resources.GetObject("GridView2.Appearance.FocusedRow.Image"), System.Drawing.Image)
Me.GridView2.Appearance.FocusedRow.Options.UseBackColor = True
- resources.ApplyResources(Me.GridView2, "GridView2")
Me.GridView2.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colNAME1})
Me.GridView2.GridControl = Me.GridControl2
Me.GridView2.Name = "GridView2"
@@ -1051,55 +987,55 @@ Partial Class frmUserKonfig
'
'COMMENTTextBox
'
- resources.ApplyResources(Me.COMMENTTextBox, "COMMENTTextBox")
Me.COMMENTTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USER_GROUPSBindingSource, "COMMENT", True))
+ resources.ApplyResources(Me.COMMENTTextBox, "COMMENTTextBox")
Me.COMMENTTextBox.Name = "COMMENTTextBox"
'
'GUIDTextBox1
'
- resources.ApplyResources(Me.GUIDTextBox1, "GUIDTextBox1")
Me.GUIDTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USER_GROUPSBindingSource, "GUID", True))
+ resources.ApplyResources(Me.GUIDTextBox1, "GUIDTextBox1")
Me.GUIDTextBox1.Name = "GUIDTextBox1"
'
'NAMETextBox1
'
- resources.ApplyResources(Me.NAMETextBox1, "NAMETextBox1")
Me.NAMETextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USER_GROUPSBindingSource, "NAME", True))
+ resources.ApplyResources(Me.NAMETextBox1, "NAMETextBox1")
Me.NAMETextBox1.Name = "NAMETextBox1"
'
'ADDED_WHOTextBox1
'
- resources.ApplyResources(Me.ADDED_WHOTextBox1, "ADDED_WHOTextBox1")
Me.ADDED_WHOTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USER_GROUPSBindingSource, "ADDED_WHO", True))
+ resources.ApplyResources(Me.ADDED_WHOTextBox1, "ADDED_WHOTextBox1")
Me.ADDED_WHOTextBox1.Name = "ADDED_WHOTextBox1"
'
'ADDED_WHENTextBox1
'
- resources.ApplyResources(Me.ADDED_WHENTextBox1, "ADDED_WHENTextBox1")
Me.ADDED_WHENTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USER_GROUPSBindingSource, "ADDED_WHEN", True))
+ resources.ApplyResources(Me.ADDED_WHENTextBox1, "ADDED_WHENTextBox1")
Me.ADDED_WHENTextBox1.Name = "ADDED_WHENTextBox1"
'
'CHANGED_WHOTextBox1
'
- resources.ApplyResources(Me.CHANGED_WHOTextBox1, "CHANGED_WHOTextBox1")
Me.CHANGED_WHOTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USER_GROUPSBindingSource, "CHANGED_WHO", True))
+ resources.ApplyResources(Me.CHANGED_WHOTextBox1, "CHANGED_WHOTextBox1")
Me.CHANGED_WHOTextBox1.Name = "CHANGED_WHOTextBox1"
'
'CHANGED_WHENTextBox1
'
- resources.ApplyResources(Me.CHANGED_WHENTextBox1, "CHANGED_WHENTextBox1")
Me.CHANGED_WHENTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USER_GROUPSBindingSource, "CHANGED_WHEN", True))
+ resources.ApplyResources(Me.CHANGED_WHENTextBox1, "CHANGED_WHENTextBox1")
Me.CHANGED_WHENTextBox1.Name = "CHANGED_WHENTextBox1"
'
'BindingNavigator1
'
- resources.ApplyResources(Me.BindingNavigator1, "BindingNavigator1")
Me.BindingNavigator1.AddNewItem = Me.ToolStripButton1
Me.BindingNavigator1.BindingSource = Me.TBDD_USER_GROUPSBindingSource
Me.BindingNavigator1.CountItem = Me.ToolStripLabel1
Me.BindingNavigator1.CountItemFormat = "of {0}"
Me.BindingNavigator1.DeleteItem = Me.ToolStripButton2
Me.BindingNavigator1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripButton3, Me.ToolStripButton4, Me.ToolStripSeparator1, Me.ToolStripTextBox1, Me.ToolStripLabel1, Me.ToolStripSeparator2, Me.ToolStripButton5, Me.ToolStripButton6, Me.ToolStripSeparator3, Me.ToolStripButton1, Me.ToolStripButton2, Me.ToolStripButton7, Me.ToolStripButton8})
+ resources.ApplyResources(Me.BindingNavigator1, "BindingNavigator1")
Me.BindingNavigator1.MoveFirstItem = Me.ToolStripButton3
Me.BindingNavigator1.MoveLastItem = Me.ToolStripButton6
Me.BindingNavigator1.MoveNextItem = Me.ToolStripButton5
@@ -1109,37 +1045,37 @@ Partial Class frmUserKonfig
'
'ToolStripButton1
'
- resources.ApplyResources(Me.ToolStripButton1, "ToolStripButton1")
Me.ToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton1, "ToolStripButton1")
Me.ToolStripButton1.Name = "ToolStripButton1"
'
'ToolStripLabel1
'
- resources.ApplyResources(Me.ToolStripLabel1, "ToolStripLabel1")
Me.ToolStripLabel1.Name = "ToolStripLabel1"
+ resources.ApplyResources(Me.ToolStripLabel1, "ToolStripLabel1")
'
'ToolStripButton2
'
- resources.ApplyResources(Me.ToolStripButton2, "ToolStripButton2")
Me.ToolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton2, "ToolStripButton2")
Me.ToolStripButton2.Name = "ToolStripButton2"
'
'ToolStripButton3
'
- resources.ApplyResources(Me.ToolStripButton3, "ToolStripButton3")
Me.ToolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton3, "ToolStripButton3")
Me.ToolStripButton3.Name = "ToolStripButton3"
'
'ToolStripButton4
'
- resources.ApplyResources(Me.ToolStripButton4, "ToolStripButton4")
Me.ToolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton4, "ToolStripButton4")
Me.ToolStripButton4.Name = "ToolStripButton4"
'
'ToolStripSeparator1
'
- resources.ApplyResources(Me.ToolStripSeparator1, "ToolStripSeparator1")
Me.ToolStripSeparator1.Name = "ToolStripSeparator1"
+ resources.ApplyResources(Me.ToolStripSeparator1, "ToolStripSeparator1")
'
'ToolStripTextBox1
'
@@ -1148,37 +1084,37 @@ Partial Class frmUserKonfig
'
'ToolStripSeparator2
'
- resources.ApplyResources(Me.ToolStripSeparator2, "ToolStripSeparator2")
Me.ToolStripSeparator2.Name = "ToolStripSeparator2"
+ resources.ApplyResources(Me.ToolStripSeparator2, "ToolStripSeparator2")
'
'ToolStripButton5
'
- resources.ApplyResources(Me.ToolStripButton5, "ToolStripButton5")
Me.ToolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton5, "ToolStripButton5")
Me.ToolStripButton5.Name = "ToolStripButton5"
'
'ToolStripButton6
'
- resources.ApplyResources(Me.ToolStripButton6, "ToolStripButton6")
Me.ToolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton6, "ToolStripButton6")
Me.ToolStripButton6.Name = "ToolStripButton6"
'
'ToolStripSeparator3
'
- resources.ApplyResources(Me.ToolStripSeparator3, "ToolStripSeparator3")
Me.ToolStripSeparator3.Name = "ToolStripSeparator3"
+ resources.ApplyResources(Me.ToolStripSeparator3, "ToolStripSeparator3")
'
'ToolStripButton7
'
- resources.ApplyResources(Me.ToolStripButton7, "ToolStripButton7")
Me.ToolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton7, "ToolStripButton7")
Me.ToolStripButton7.Name = "ToolStripButton7"
'
'ToolStripButton8
'
- resources.ApplyResources(Me.ToolStripButton8, "ToolStripButton8")
Me.ToolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripButton8.Image = Global.DD_Record_Organiser.My.Resources.Resources.refresh_16xLG
+ resources.ApplyResources(Me.ToolStripButton8, "ToolStripButton8")
Me.ToolStripButton8.Name = "ToolStripButton8"
'
'XtraTabPage2
@@ -1189,15 +1125,14 @@ Partial Class frmUserKonfig
'
'TabControl3
'
- resources.ApplyResources(Me.TabControl3, "TabControl3")
Me.TabControl3.Controls.Add(Me.TabPage5)
Me.TabControl3.Controls.Add(Me.TabPage6)
+ resources.ApplyResources(Me.TabControl3, "TabControl3")
Me.TabControl3.Name = "TabControl3"
Me.TabControl3.SelectedIndex = 0
'
'TabPage5
'
- resources.ApplyResources(Me.TabPage5, "TabPage5")
Me.TabPage5.Controls.Add(Me.BindingNavigator2)
Me.TabPage5.Controls.Add(Me.Label7)
Me.TabPage5.Controls.Add(Me.GUIDTextBox)
@@ -1217,17 +1152,18 @@ Partial Class frmUserKonfig
Me.TabPage5.Controls.Add(Me.ADDED_WHOTextBox2)
Me.TabPage5.Controls.Add(Label12)
Me.TabPage5.Controls.Add(Me.ADDED_WHENTextBox2)
+ resources.ApplyResources(Me.TabPage5, "TabPage5")
Me.TabPage5.Name = "TabPage5"
Me.TabPage5.UseVisualStyleBackColor = True
'
'BindingNavigator2
'
- resources.ApplyResources(Me.BindingNavigator2, "BindingNavigator2")
Me.BindingNavigator2.AddNewItem = Me.ToolStripButton17
Me.BindingNavigator2.CountItem = Me.ToolStripLabel3
Me.BindingNavigator2.CountItemFormat = "of {0} Clients"
Me.BindingNavigator2.DeleteItem = Me.ToolStripButton18
Me.BindingNavigator2.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripButton19, Me.ToolStripButton20, Me.ToolStripSeparator7, Me.ToolStripTextBox3, Me.ToolStripLabel3, Me.ToolStripSeparator8, Me.ToolStripButton21, Me.ToolStripButton22, Me.ToolStripSeparator9, Me.ToolStripButton17, Me.ToolStripButton18, Me.ToolStripButton23, Me.ToolStripButton24})
+ resources.ApplyResources(Me.BindingNavigator2, "BindingNavigator2")
Me.BindingNavigator2.MoveFirstItem = Me.ToolStripButton19
Me.BindingNavigator2.MoveLastItem = Me.ToolStripButton22
Me.BindingNavigator2.MoveNextItem = Me.ToolStripButton21
@@ -1237,37 +1173,37 @@ Partial Class frmUserKonfig
'
'ToolStripButton17
'
- resources.ApplyResources(Me.ToolStripButton17, "ToolStripButton17")
Me.ToolStripButton17.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton17, "ToolStripButton17")
Me.ToolStripButton17.Name = "ToolStripButton17"
'
'ToolStripLabel3
'
- resources.ApplyResources(Me.ToolStripLabel3, "ToolStripLabel3")
Me.ToolStripLabel3.Name = "ToolStripLabel3"
+ resources.ApplyResources(Me.ToolStripLabel3, "ToolStripLabel3")
'
'ToolStripButton18
'
- resources.ApplyResources(Me.ToolStripButton18, "ToolStripButton18")
Me.ToolStripButton18.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton18, "ToolStripButton18")
Me.ToolStripButton18.Name = "ToolStripButton18"
'
'ToolStripButton19
'
- resources.ApplyResources(Me.ToolStripButton19, "ToolStripButton19")
Me.ToolStripButton19.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton19, "ToolStripButton19")
Me.ToolStripButton19.Name = "ToolStripButton19"
'
'ToolStripButton20
'
- resources.ApplyResources(Me.ToolStripButton20, "ToolStripButton20")
Me.ToolStripButton20.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton20, "ToolStripButton20")
Me.ToolStripButton20.Name = "ToolStripButton20"
'
'ToolStripSeparator7
'
- resources.ApplyResources(Me.ToolStripSeparator7, "ToolStripSeparator7")
Me.ToolStripSeparator7.Name = "ToolStripSeparator7"
+ resources.ApplyResources(Me.ToolStripSeparator7, "ToolStripSeparator7")
'
'ToolStripTextBox3
'
@@ -1276,37 +1212,37 @@ Partial Class frmUserKonfig
'
'ToolStripSeparator8
'
- resources.ApplyResources(Me.ToolStripSeparator8, "ToolStripSeparator8")
Me.ToolStripSeparator8.Name = "ToolStripSeparator8"
+ resources.ApplyResources(Me.ToolStripSeparator8, "ToolStripSeparator8")
'
'ToolStripButton21
'
- resources.ApplyResources(Me.ToolStripButton21, "ToolStripButton21")
Me.ToolStripButton21.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton21, "ToolStripButton21")
Me.ToolStripButton21.Name = "ToolStripButton21"
'
'ToolStripButton22
'
- resources.ApplyResources(Me.ToolStripButton22, "ToolStripButton22")
Me.ToolStripButton22.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton22, "ToolStripButton22")
Me.ToolStripButton22.Name = "ToolStripButton22"
'
'ToolStripSeparator9
'
- resources.ApplyResources(Me.ToolStripSeparator9, "ToolStripSeparator9")
Me.ToolStripSeparator9.Name = "ToolStripSeparator9"
+ resources.ApplyResources(Me.ToolStripSeparator9, "ToolStripSeparator9")
'
'ToolStripButton23
'
- resources.ApplyResources(Me.ToolStripButton23, "ToolStripButton23")
Me.ToolStripButton23.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
+ resources.ApplyResources(Me.ToolStripButton23, "ToolStripButton23")
Me.ToolStripButton23.Name = "ToolStripButton23"
'
'ToolStripButton24
'
- resources.ApplyResources(Me.ToolStripButton24, "ToolStripButton24")
Me.ToolStripButton24.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripButton24.Image = Global.DD_Record_Organiser.My.Resources.Resources.refresh_16xLG
+ resources.ApplyResources(Me.ToolStripButton24, "ToolStripButton24")
Me.ToolStripButton24.Name = "ToolStripButton24"
'
'Label7
@@ -1317,8 +1253,8 @@ Partial Class frmUserKonfig
'
'GUIDTextBox
'
- resources.ApplyResources(Me.GUIDTextBox, "GUIDTextBox")
Me.GUIDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CLIENTBindingSource, "GUID", True))
+ resources.ApplyResources(Me.GUIDTextBox, "GUIDTextBox")
Me.GUIDTextBox.Name = "GUIDTextBox"
Me.GUIDTextBox.ReadOnly = True
'
@@ -1329,8 +1265,8 @@ Partial Class frmUserKonfig
'
'CLIENT_NAMETextBox
'
- resources.ApplyResources(Me.CLIENT_NAMETextBox, "CLIENT_NAMETextBox")
Me.CLIENT_NAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CLIENTBindingSource, "CLIENT_NAME", True))
+ resources.ApplyResources(Me.CLIENT_NAMETextBox, "CLIENT_NAMETextBox")
Me.CLIENT_NAMETextBox.Name = "CLIENT_NAMETextBox"
'
'ListBox2
@@ -1345,41 +1281,41 @@ Partial Class frmUserKonfig
'
'SHORTNAMETextBox
'
- resources.ApplyResources(Me.SHORTNAMETextBox, "SHORTNAMETextBox")
Me.SHORTNAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CLIENTBindingSource, "SHORTNAME", True))
+ resources.ApplyResources(Me.SHORTNAMETextBox, "SHORTNAMETextBox")
Me.SHORTNAMETextBox.Name = "SHORTNAMETextBox"
'
'CHANGED_WHENTextBox2
'
- resources.ApplyResources(Me.CHANGED_WHENTextBox2, "CHANGED_WHENTextBox2")
Me.CHANGED_WHENTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CLIENTBindingSource, "CHANGED_WHEN", True))
+ resources.ApplyResources(Me.CHANGED_WHENTextBox2, "CHANGED_WHENTextBox2")
Me.CHANGED_WHENTextBox2.Name = "CHANGED_WHENTextBox2"
Me.CHANGED_WHENTextBox2.ReadOnly = True
'
'COMMENTTextBox1
'
- resources.ApplyResources(Me.COMMENTTextBox1, "COMMENTTextBox1")
Me.COMMENTTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CLIENTBindingSource, "COMMENT", True))
+ resources.ApplyResources(Me.COMMENTTextBox1, "COMMENTTextBox1")
Me.COMMENTTextBox1.Name = "COMMENTTextBox1"
'
'CHANGED_WHOTextBox2
'
- resources.ApplyResources(Me.CHANGED_WHOTextBox2, "CHANGED_WHOTextBox2")
Me.CHANGED_WHOTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CLIENTBindingSource, "CHANGED_WHO", True))
+ resources.ApplyResources(Me.CHANGED_WHOTextBox2, "CHANGED_WHOTextBox2")
Me.CHANGED_WHOTextBox2.Name = "CHANGED_WHOTextBox2"
Me.CHANGED_WHOTextBox2.ReadOnly = True
'
'ADDED_WHOTextBox2
'
- resources.ApplyResources(Me.ADDED_WHOTextBox2, "ADDED_WHOTextBox2")
Me.ADDED_WHOTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CLIENTBindingSource, "ADDED_WHO", True))
+ resources.ApplyResources(Me.ADDED_WHOTextBox2, "ADDED_WHOTextBox2")
Me.ADDED_WHOTextBox2.Name = "ADDED_WHOTextBox2"
Me.ADDED_WHOTextBox2.ReadOnly = True
'
'ADDED_WHENTextBox2
'
- resources.ApplyResources(Me.ADDED_WHENTextBox2, "ADDED_WHENTextBox2")
Me.ADDED_WHENTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CLIENTBindingSource, "ADDED_WHEN", True))
+ resources.ApplyResources(Me.ADDED_WHENTextBox2, "ADDED_WHENTextBox2")
Me.ADDED_WHENTextBox2.Name = "ADDED_WHENTextBox2"
Me.ADDED_WHENTextBox2.ReadOnly = True
'
@@ -1401,18 +1337,6 @@ Partial Class frmUserKonfig
'
resources.ApplyResources(Me.GridControlUsersinClient, "GridControlUsersinClient")
Me.GridControlUsersinClient.DataSource = Me.TBWH_Users1BindingSource
- Me.GridControlUsersinClient.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridControlUsersinClient.EmbeddedNavigator.AccessibleDescription")
- Me.GridControlUsersinClient.EmbeddedNavigator.AccessibleName = resources.GetString("GridControlUsersinClient.EmbeddedNavigator.AccessibleName")
- Me.GridControlUsersinClient.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridControlUsersinClient.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
- Me.GridControlUsersinClient.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridControlUsersinClient.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
- Me.GridControlUsersinClient.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridControlUsersinClient.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
- Me.GridControlUsersinClient.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridControlUsersinClient.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
- Me.GridControlUsersinClient.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridControlUsersinClient.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
- Me.GridControlUsersinClient.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridControlUsersinClient.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
- Me.GridControlUsersinClient.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridControlUsersinClient.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
- Me.GridControlUsersinClient.EmbeddedNavigator.ToolTip = resources.GetString("GridControlUsersinClient.EmbeddedNavigator.ToolTip")
- Me.GridControlUsersinClient.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridControlUsersinClient.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
- Me.GridControlUsersinClient.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridControlUsersinClient.EmbeddedNavigator.ToolTipTitle")
Me.GridControlUsersinClient.MainView = Me.GridViewUsersinClient
Me.GridControlUsersinClient.Name = "GridControlUsersinClient"
Me.GridControlUsersinClient.ShowOnlyPredefinedDetails = True
@@ -1421,18 +1345,9 @@ Partial Class frmUserKonfig
'GridViewUsersinClient
'
Me.GridViewUsersinClient.Appearance.EvenRow.BackColor = CType(resources.GetObject("GridViewUsersinClient.Appearance.EvenRow.BackColor"), System.Drawing.Color)
- Me.GridViewUsersinClient.Appearance.EvenRow.FontSizeDelta = CType(resources.GetObject("GridViewUsersinClient.Appearance.EvenRow.FontSizeDelta"), Integer)
- Me.GridViewUsersinClient.Appearance.EvenRow.FontStyleDelta = CType(resources.GetObject("GridViewUsersinClient.Appearance.EvenRow.FontStyleDelta"), System.Drawing.FontStyle)
- Me.GridViewUsersinClient.Appearance.EvenRow.GradientMode = CType(resources.GetObject("GridViewUsersinClient.Appearance.EvenRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
- Me.GridViewUsersinClient.Appearance.EvenRow.Image = CType(resources.GetObject("GridViewUsersinClient.Appearance.EvenRow.Image"), System.Drawing.Image)
Me.GridViewUsersinClient.Appearance.EvenRow.Options.UseBackColor = True
Me.GridViewUsersinClient.Appearance.FocusedRow.BackColor = CType(resources.GetObject("GridViewUsersinClient.Appearance.FocusedRow.BackColor"), System.Drawing.Color)
- Me.GridViewUsersinClient.Appearance.FocusedRow.FontSizeDelta = CType(resources.GetObject("GridViewUsersinClient.Appearance.FocusedRow.FontSizeDelta"), Integer)
- Me.GridViewUsersinClient.Appearance.FocusedRow.FontStyleDelta = CType(resources.GetObject("GridViewUsersinClient.Appearance.FocusedRow.FontStyleDelta"), System.Drawing.FontStyle)
- Me.GridViewUsersinClient.Appearance.FocusedRow.GradientMode = CType(resources.GetObject("GridViewUsersinClient.Appearance.FocusedRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
- Me.GridViewUsersinClient.Appearance.FocusedRow.Image = CType(resources.GetObject("GridViewUsersinClient.Appearance.FocusedRow.Image"), System.Drawing.Image)
Me.GridViewUsersinClient.Appearance.FocusedRow.Options.UseBackColor = True
- resources.ApplyResources(Me.GridViewUsersinClient, "GridViewUsersinClient")
Me.GridViewUsersinClient.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.GridColumn11, Me.GridColumn12, Me.GridColumn13, Me.GridColumn14})
Me.GridViewUsersinClient.GridControl = Me.GridControlUsersinClient
Me.GridViewUsersinClient.Name = "GridViewUsersinClient"
@@ -1453,21 +1368,20 @@ Partial Class frmUserKonfig
'
'GridColumn12
'
- resources.ApplyResources(Me.GridColumn12, "GridColumn12")
Me.GridColumn12.FieldName = "Username"
Me.GridColumn12.Name = "GridColumn12"
Me.GridColumn12.OptionsColumn.AllowEdit = False
+ resources.ApplyResources(Me.GridColumn12, "GridColumn12")
'
'GridColumn13
'
- resources.ApplyResources(Me.GridColumn13, "GridColumn13")
Me.GridColumn13.FieldName = "Email"
Me.GridColumn13.Name = "GridColumn13"
Me.GridColumn13.OptionsColumn.AllowEdit = False
+ resources.ApplyResources(Me.GridColumn13, "GridColumn13")
'
'GridColumn14
'
- resources.ApplyResources(Me.GridColumn14, "GridColumn14")
Me.GridColumn14.FieldName = "ID"
Me.GridColumn14.Name = "GridColumn14"
'
@@ -1475,18 +1389,6 @@ Partial Class frmUserKonfig
'
resources.ApplyResources(Me.GridControlUser2Mandanten, "GridControlUser2Mandanten")
Me.GridControlUser2Mandanten.DataSource = Me.TBWH_Users2BindingSource
- Me.GridControlUser2Mandanten.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridControlUser2Mandanten.EmbeddedNavigator.AccessibleDescription")
- Me.GridControlUser2Mandanten.EmbeddedNavigator.AccessibleName = resources.GetString("GridControlUser2Mandanten.EmbeddedNavigator.AccessibleName")
- Me.GridControlUser2Mandanten.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridControlUser2Mandanten.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
- Me.GridControlUser2Mandanten.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridControlUser2Mandanten.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
- Me.GridControlUser2Mandanten.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridControlUser2Mandanten.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
- Me.GridControlUser2Mandanten.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridControlUser2Mandanten.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
- Me.GridControlUser2Mandanten.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridControlUser2Mandanten.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
- Me.GridControlUser2Mandanten.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridControlUser2Mandanten.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
- Me.GridControlUser2Mandanten.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridControlUser2Mandanten.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
- Me.GridControlUser2Mandanten.EmbeddedNavigator.ToolTip = resources.GetString("GridControlUser2Mandanten.EmbeddedNavigator.ToolTip")
- Me.GridControlUser2Mandanten.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridControlUser2Mandanten.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
- Me.GridControlUser2Mandanten.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridControlUser2Mandanten.EmbeddedNavigator.ToolTipTitle")
Me.GridControlUser2Mandanten.MainView = Me.GridViewUser2Mandanten
Me.GridControlUser2Mandanten.Name = "GridControlUser2Mandanten"
Me.GridControlUser2Mandanten.ShowOnlyPredefinedDetails = True
@@ -1500,18 +1402,9 @@ Partial Class frmUserKonfig
'GridViewUser2Mandanten
'
Me.GridViewUser2Mandanten.Appearance.EvenRow.BackColor = CType(resources.GetObject("GridViewUser2Mandanten.Appearance.EvenRow.BackColor"), System.Drawing.Color)
- Me.GridViewUser2Mandanten.Appearance.EvenRow.FontSizeDelta = CType(resources.GetObject("GridViewUser2Mandanten.Appearance.EvenRow.FontSizeDelta"), Integer)
- Me.GridViewUser2Mandanten.Appearance.EvenRow.FontStyleDelta = CType(resources.GetObject("GridViewUser2Mandanten.Appearance.EvenRow.FontStyleDelta"), System.Drawing.FontStyle)
- Me.GridViewUser2Mandanten.Appearance.EvenRow.GradientMode = CType(resources.GetObject("GridViewUser2Mandanten.Appearance.EvenRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
- Me.GridViewUser2Mandanten.Appearance.EvenRow.Image = CType(resources.GetObject("GridViewUser2Mandanten.Appearance.EvenRow.Image"), System.Drawing.Image)
Me.GridViewUser2Mandanten.Appearance.EvenRow.Options.UseBackColor = True
Me.GridViewUser2Mandanten.Appearance.FocusedRow.BackColor = CType(resources.GetObject("GridViewUser2Mandanten.Appearance.FocusedRow.BackColor"), System.Drawing.Color)
- Me.GridViewUser2Mandanten.Appearance.FocusedRow.FontSizeDelta = CType(resources.GetObject("GridViewUser2Mandanten.Appearance.FocusedRow.FontSizeDelta"), Integer)
- Me.GridViewUser2Mandanten.Appearance.FocusedRow.FontStyleDelta = CType(resources.GetObject("GridViewUser2Mandanten.Appearance.FocusedRow.FontStyleDelta"), System.Drawing.FontStyle)
- Me.GridViewUser2Mandanten.Appearance.FocusedRow.GradientMode = CType(resources.GetObject("GridViewUser2Mandanten.Appearance.FocusedRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
- Me.GridViewUser2Mandanten.Appearance.FocusedRow.Image = CType(resources.GetObject("GridViewUser2Mandanten.Appearance.FocusedRow.Image"), System.Drawing.Image)
Me.GridViewUser2Mandanten.Appearance.FocusedRow.Options.UseBackColor = True
- resources.ApplyResources(Me.GridViewUser2Mandanten, "GridViewUser2Mandanten")
Me.GridViewUser2Mandanten.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.GridColumn7, Me.GridColumn8, Me.GridColumn9, Me.GridColumn10})
Me.GridViewUser2Mandanten.GridControl = Me.GridControlUser2Mandanten
Me.GridViewUser2Mandanten.Name = "GridViewUser2Mandanten"
@@ -1532,28 +1425,27 @@ Partial Class frmUserKonfig
'
'GridColumn8
'
- resources.ApplyResources(Me.GridColumn8, "GridColumn8")
Me.GridColumn8.FieldName = "Username"
Me.GridColumn8.Name = "GridColumn8"
Me.GridColumn8.OptionsColumn.AllowEdit = False
+ resources.ApplyResources(Me.GridColumn8, "GridColumn8")
'
'GridColumn9
'
- resources.ApplyResources(Me.GridColumn9, "GridColumn9")
Me.GridColumn9.FieldName = "Email"
Me.GridColumn9.Name = "GridColumn9"
Me.GridColumn9.OptionsColumn.AllowEdit = False
+ resources.ApplyResources(Me.GridColumn9, "GridColumn9")
'
'GridColumn10
'
- resources.ApplyResources(Me.GridColumn10, "GridColumn10")
Me.GridColumn10.FieldName = "ID"
Me.GridColumn10.Name = "GridColumn10"
'
'btndeleteUserfromClient
'
- resources.ApplyResources(Me.btndeleteUserfromClient, "btndeleteUserfromClient")
Me.btndeleteUserfromClient.Image = Global.DD_Record_Organiser.My.Resources.Resources.delete
+ resources.ApplyResources(Me.btndeleteUserfromClient, "btndeleteUserfromClient")
Me.btndeleteUserfromClient.Name = "btndeleteUserfromClient"
Me.btndeleteUserfromClient.UseVisualStyleBackColor = True
'
@@ -1564,8 +1456,8 @@ Partial Class frmUserKonfig
'
'btnsaddUser2Client
'
- resources.ApplyResources(Me.btnsaddUser2Client, "btnsaddUser2Client")
Me.btnsaddUser2Client.Image = Global.DD_Record_Organiser.My.Resources.Resources.add1
+ resources.ApplyResources(Me.btnsaddUser2Client, "btnsaddUser2Client")
Me.btnsaddUser2Client.Name = "btnsaddUser2Client"
Me.btnsaddUser2Client.UseVisualStyleBackColor = True
'
@@ -1581,10 +1473,10 @@ Partial Class frmUserKonfig
'
'cmbClientsforUser
'
- resources.ApplyResources(Me.cmbClientsforUser, "cmbClientsforUser")
Me.cmbClientsforUser.DataSource = Me.TBDD_CLIENTBindingSource
Me.cmbClientsforUser.DisplayMember = "CLIENT_NAME"
Me.cmbClientsforUser.FormattingEnabled = True
+ resources.ApplyResources(Me.cmbClientsforUser, "cmbClientsforUser")
Me.cmbClientsforUser.Name = "cmbClientsforUser"
Me.cmbClientsforUser.ValueMember = "GUID"
'
@@ -1609,10 +1501,10 @@ Partial Class frmUserKonfig
'
'LANGUAGEComboBox
'
- resources.ApplyResources(Me.LANGUAGEComboBox, "LANGUAGEComboBox")
Me.LANGUAGEComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "LANGUAGE", True))
Me.LANGUAGEComboBox.FormattingEnabled = True
Me.LANGUAGEComboBox.Items.AddRange(New Object() {resources.GetString("LANGUAGEComboBox.Items"), resources.GetString("LANGUAGEComboBox.Items1")})
+ resources.ApplyResources(Me.LANGUAGEComboBox, "LANGUAGEComboBox")
Me.LANGUAGEComboBox.Name = "LANGUAGEComboBox"
'
'TBDD_GROUPS_USERBindingSource
@@ -1627,8 +1519,8 @@ Partial Class frmUserKonfig
'
'lstbxUserMandant
'
- resources.ApplyResources(Me.lstbxUserMandant, "lstbxUserMandant")
Me.lstbxUserMandant.BackColor = System.Drawing.SystemColors.GradientInactiveCaption
+ resources.ApplyResources(Me.lstbxUserMandant, "lstbxUserMandant")
Me.lstbxUserMandant.FormattingEnabled = True
Me.lstbxUserMandant.Name = "lstbxUserMandant"
'
@@ -1640,18 +1532,6 @@ Partial Class frmUserKonfig
'
resources.ApplyResources(Me.GridControl1, "GridControl1")
Me.GridControl1.DataSource = Me.TBDD_USERBindingSource
- Me.GridControl1.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridControl1.EmbeddedNavigator.AccessibleDescription")
- Me.GridControl1.EmbeddedNavigator.AccessibleName = resources.GetString("GridControl1.EmbeddedNavigator.AccessibleName")
- Me.GridControl1.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridControl1.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
- Me.GridControl1.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridControl1.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
- Me.GridControl1.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridControl1.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
- Me.GridControl1.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridControl1.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
- Me.GridControl1.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridControl1.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
- Me.GridControl1.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridControl1.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
- Me.GridControl1.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridControl1.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
- Me.GridControl1.EmbeddedNavigator.ToolTip = resources.GetString("GridControl1.EmbeddedNavigator.ToolTip")
- Me.GridControl1.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridControl1.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
- Me.GridControl1.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridControl1.EmbeddedNavigator.ToolTipTitle")
Me.GridControl1.MainView = Me.GridView1
Me.GridControl1.Name = "GridControl1"
Me.GridControl1.ShowOnlyPredefinedDetails = True
@@ -1660,18 +1540,9 @@ Partial Class frmUserKonfig
'GridView1
'
Me.GridView1.Appearance.EvenRow.BackColor = CType(resources.GetObject("GridView1.Appearance.EvenRow.BackColor"), System.Drawing.Color)
- Me.GridView1.Appearance.EvenRow.FontSizeDelta = CType(resources.GetObject("GridView1.Appearance.EvenRow.FontSizeDelta"), Integer)
- Me.GridView1.Appearance.EvenRow.FontStyleDelta = CType(resources.GetObject("GridView1.Appearance.EvenRow.FontStyleDelta"), System.Drawing.FontStyle)
- Me.GridView1.Appearance.EvenRow.GradientMode = CType(resources.GetObject("GridView1.Appearance.EvenRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
- Me.GridView1.Appearance.EvenRow.Image = CType(resources.GetObject("GridView1.Appearance.EvenRow.Image"), System.Drawing.Image)
Me.GridView1.Appearance.EvenRow.Options.UseBackColor = True
Me.GridView1.Appearance.FocusedRow.BackColor = CType(resources.GetObject("GridView1.Appearance.FocusedRow.BackColor"), System.Drawing.Color)
- Me.GridView1.Appearance.FocusedRow.FontSizeDelta = CType(resources.GetObject("GridView1.Appearance.FocusedRow.FontSizeDelta"), Integer)
- Me.GridView1.Appearance.FocusedRow.FontStyleDelta = CType(resources.GetObject("GridView1.Appearance.FocusedRow.FontStyleDelta"), System.Drawing.FontStyle)
- Me.GridView1.Appearance.FocusedRow.GradientMode = CType(resources.GetObject("GridView1.Appearance.FocusedRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
- Me.GridView1.Appearance.FocusedRow.Image = CType(resources.GetObject("GridView1.Appearance.FocusedRow.Image"), System.Drawing.Image)
Me.GridView1.Appearance.FocusedRow.Options.UseBackColor = True
- resources.ApplyResources(Me.GridView1, "GridView1")
Me.GridView1.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colUSERNAME, Me.colNAME, Me.colEMAIL})
Me.GridView1.GridControl = Me.GridControl1
Me.GridView1.Name = "GridView1"
@@ -1705,20 +1576,28 @@ Partial Class frmUserKonfig
'
'SHORTNAMETextBox1
'
- resources.ApplyResources(Me.SHORTNAMETextBox1, "SHORTNAMETextBox1")
Me.SHORTNAMETextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "SHORTNAME", True))
+ resources.ApplyResources(Me.SHORTNAMETextBox1, "SHORTNAMETextBox1")
Me.SHORTNAMETextBox1.Name = "SHORTNAMETextBox1"
'
'COMMENTTextBox2
'
- resources.ApplyResources(Me.COMMENTTextBox2, "COMMENTTextBox2")
Me.COMMENTTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "COMMENT", True))
+ resources.ApplyResources(Me.COMMENTTextBox2, "COMMENTTextBox2")
Me.COMMENTTextBox2.Name = "COMMENTTextBox2"
'
+ 'WAN_ENVIRONMENTCheckBox
+ '
+ Me.WAN_ENVIRONMENTCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_USERBindingSource, "WAN_ENVIRONMENT", True))
+ resources.ApplyResources(Me.WAN_ENVIRONMENTCheckBox, "WAN_ENVIRONMENTCheckBox")
+ Me.WAN_ENVIRONMENTCheckBox.Name = "WAN_ENVIRONMENTCheckBox"
+ Me.WAN_ENVIRONMENTCheckBox.UseVisualStyleBackColor = True
+ '
'frmUserKonfig
'
resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
+ Me.Controls.Add(Me.WAN_ENVIRONMENTCheckBox)
Me.Controls.Add(COMMENTLabel2)
Me.Controls.Add(Me.COMMENTTextBox2)
Me.Controls.Add(SHORTNAMELabel1)
@@ -1964,4 +1843,5 @@ End Sub
Friend WithEvents colNAME1 As DevExpress.XtraGrid.Columns.GridColumn
Friend WithEvents SHORTNAMETextBox1 As System.Windows.Forms.TextBox
Friend WithEvents COMMENTTextBox2 As System.Windows.Forms.TextBox
+ Friend WithEvents WAN_ENVIRONMENTCheckBox As System.Windows.Forms.CheckBox
End Class
diff --git a/app/DD-Record-Organiser/frmUserKonfig.en-US.resx b/app/DD-Record-Organiser/frmUserKonfig.en-US.resx
index ce5016c..508d6a9 100644
--- a/app/DD-Record-Organiser/frmUserKonfig.en-US.resx
+++ b/app/DD-Record-Organiser/frmUserKonfig.en-US.resx
@@ -273,9 +273,45 @@
Add User from AD
+
+ 1123, 25
+
Segoe UI, 8.25pt, style=Italic
+
+ 378, 80
+
+
+ 1105, 319
+
+
+ User-Group Assignment
+
+
+ 1111, 347
+
+
+ 1097, 303
+
+
+ Groupdefinition
+
+
+ 1097, 303
+
+
+ Clientdefinition
+
+
+ 1105, 319
+
+
+ 1097, 293
+
+
+ User to group
+
91, 13
@@ -295,141 +331,19 @@
Add selected User to Group
- 236, 95
+ 236, 108
-
- User to group
+
+ 1089, 277
-
-
-
-
-
-
-
-
-
- Default
-
-
- Top, Left
-
-
-
-
-
- Tile
-
-
- Inherit
-
-
- 0, 0
-
-
-
- Center
-
-
-
-
-
-
- None
-
-
-
-
-
-
- 0
-
-
- Regular
-
-
- Horizontal
-
-
-
-
-
- 0
-
-
- Regular
-
-
- Horizontal
-
-
-
+
+ Group to User
- 263, 204
-
-
-
-
-
-
-
-
- Default
-
-
- Top, Left
-
-
-
-
-
- Tile
-
-
- Inherit
-
-
- 0, 0
-
-
- Center
-
-
-
-
-
- None
-
-
-
-
-
- 0
-
-
- Regular
-
-
- Horizontal
-
-
-
-
-
- 0
-
-
- Regular
-
-
- Horizontal
-
-
-
+ 263, 187
- 284, 204
+ 284, 187
160, 23
@@ -459,75 +373,6 @@ to group
Available Groups:
-
- 1089, 277
-
-
- Group to User
-
-
- User-Group Assignment
-
-
-
-
-
-
-
-
- Default
-
-
- Top, Left
-
-
-
-
-
- Tile
-
-
- Inherit
-
-
- 0, 0
-
-
- Center
-
-
-
-
-
- None
-
-
-
-
-
- 0
-
-
- Regular
-
-
- Horizontal
-
-
-
-
-
- 0
-
-
- Regular
-
-
- Horizontal
-
-
-
-
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -602,11 +447,11 @@ to group
1097, 25
-
+
1097, 303
-
- Groupdefinition
+
+ Clientdefinition
@@ -685,134 +530,14 @@ to group
Data saved successfully!
-
- Clientdefinition
-
-
-
-
-
-
-
-
- Default
-
-
- Top, Left
-
-
-
-
-
- Tile
-
-
- Inherit
-
-
- 0, 0
-
-
- Center
-
-
-
-
-
- None
-
-
-
-
-
- 0
-
-
- Regular
-
-
- Horizontal
-
-
-
-
-
- 0
-
-
- Regular
-
-
- Horizontal
-
-
-
+
+ User-Client Assignement
- 284, 204
-
-
-
-
-
-
-
-
- Default
-
-
- Top, Left
-
-
-
-
-
- Tile
-
-
- Inherit
-
-
- 0, 0
-
-
- Center
-
-
-
-
-
- None
-
-
-
-
-
- 0
-
-
- Regular
-
-
- Horizontal
-
-
-
-
-
- 0
-
-
- Regular
-
-
- Horizontal
-
-
-
+ 284, 187
- 284, 204
+ 284, 187
156, 23
@@ -842,18 +567,6 @@ to client
Available Clients:
-
- User-Client Assignement
-
-
- 1097, 303
-
-
- 1097, 303
-
-
- Clientdefinition
-
129, 13
@@ -866,65 +579,17 @@ to client
Assigned to Clients:
-
-
+
+ 357, 241
-
-
+
+ 91, 24
-
- Default
+
+ WAN-Config
-
- Top, Left
-
-
-
-
-
- Tile
-
-
- Inherit
-
-
- 0, 0
-
-
- Center
-
-
-
-
-
- None
-
-
-
-
-
- 0
-
-
- Regular
-
-
- Horizontal
-
-
-
-
-
- 0
-
-
- Regular
-
-
- Horizontal
-
-
-
+
+ 1123, 641
diff --git a/app/DD-Record-Organiser/frmUserKonfig.resx b/app/DD-Record-Organiser/frmUserKonfig.resx
index 6c1fbbd..1ec18d2 100644
--- a/app/DD-Record-Organiser/frmUserKonfig.resx
+++ b/app/DD-Record-Organiser/frmUserKonfig.resx
@@ -117,845 +117,992 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ False
+
-
- 89
-
-
-
- 63, 13
-
-
- 65, 13
-
-
- $this
-
-
- 33
-
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Nachname:
-
-
-
-
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
- DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
- rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
- i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
- 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
- QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
- bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
-
-
-
- ToolStripButton18
-
-
-
-
-
- 5
-
-
- 140, 10
-
-
- 669, 77
-
-
- 23, 22
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 104, 24
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Cyan
-
-
- 293, 22
-
-
- Magenta
-
-
- True
-
-
- 263, 221
-
-
- 18
-
-
- Top, Bottom, Left
-
-
- 135, 53
-
-
- $this
-
-
- 107
-
-
- 0, 0
-
-
- DevExpress.XtraTab.XtraTabControl, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- Tahoma, 8.25pt, style=Italic
-
-
- COMMENTLabel1
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- MiddleLeft
-
-
- TabPage1
-
-
- 14
-
-
- 3
-
-
- 187, 121
-
-
- True
-
-
- Position
-
-
- True
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Benutzer aus Gruppe entfernen
-
-
- 54
-
-
- 1
-
True
-
- 146, 21
-
-
- 378, 94
-
-
- ToolStripButton6
-
-
-
-
-
- BindingNavigatorMoveFirstItem
-
-
- Added when:
-
-
- System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- 37
-
-
- 0
-
-
- Horizontal
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- ToolStripButton22
-
-
- PRENAMETextBox
-
-
- 1073, 245
-
-
- $this
-
-
- 182, 22
-
-
- GridViewWH_Users1
-
-
- 921, 17
-
-
- True
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 53, 13
-
-
- 6, 25
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- Kurzbezeichnung:
-
-
- 17
-
-
- 284, 221
-
-
- Inherit
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- Erstellt wann:
-
-
- ToolStripButton1
-
-
- DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBDD_USERTableAdapter, DD_DMSDataSet1.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- True
-
-
- Top, Left
-
-
- Zugeordnet zu Mandant:
-
-
- TabPage5
-
-
- CLIENT_NAMELabel
-
-
- System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 104, 21
-
-
- $this
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabPage1
-
-
- NoControl
-
-
- ToolStripButton24
-
-
- 12
-
-
- MiddleRight
-
-
- Changed who:
-
-
- 0
-
-
-
-
-
- 73, 13
-
-
- 54, 22
-
-
- 65, 13
-
-
- ADDED_WHENTextBox1
-
-
- 17
-
-
- 77, 13
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TBAD_UsersBindingSource
-
-
- Cyan
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- 1
-
-
- 2
-
-
- 4, 22
-
-
- Aktuelle Position
-
-
- 0
-
-
- 187, 249
-
-
- 437, 21
-
-
- 31
-
-
- System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 65, 13
-
-
- TabPage6
-
-
- 1
-
-
- Regular
+
+
+ 12, 39
21, 13
-
- 74, 53
+
+ 1
-
- Regular
+
+ ID:
-
- Segoe UI, 8.25pt
+
+ GUIDLabel
-
- 3, 3
-
-
- COMMENTLabel
-
-
- System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- EMAILLabel
-
-
- 5
-
-
- tbRefreshUsers
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- User zu Gruppe
-
-
- Username
-
-
- XtraTabControl1
-
-
- 29
-
-
- System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Label5
-
-
- 8
-
-
- 20
-
-
- 0
-
-
- CHANGED_WHENTextBox2
-
-
- SHORTNAMETextBox
-
-
- 8
-
-
- 208, 123
-
-
- 211, 98
-
-
- Tile
-
-
- Fuchsia
-
-
- Erste verschieben
-
-
+
System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 561, 224
+
+ $this
-
- 0
-
-
- Vorherige verschieben
-
-
- Tile
-
-
- Regular
-
-
- 85, 13
-
-
- CHANGED_WHOTextBox2
-
-
- Zugewiesene Gruppen:
-
-
-
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 2
-
-
- ToolStripButton7
-
-
- 6
-
-
- 14
-
-
- 11
-
-
- 79, 140
-
-
- 88
-
-
- TabGruppendefinition
-
-
- Horizontal
-
-
- 254, 21
-
-
- ToolStripButton1
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
+
12
-
-
-
-
- 86
-
-
+
+ False
+
+
True
-
- Nächste verschieben
+
+ 76, 39
-
- True
+
+ 56, 13
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- TabGruppendefinition
-
-
- NoControl
-
-
- 104, 22
-
-
- 27
-
-
- CHANGED_WHOTextBox1
-
-
+
3
-
- 148, 21
+
+ Vorname:
-
- 2
+
+ PRENAMELabel
-
- 2
-
-
- System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- LOGGED_WHERETextBox
-
-
- 92, 13
-
-
- System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 4
-
-
- 382, 8
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- 0
-
-
- 66, 13
-
-
- frmUserKonfig
-
-
- GridControlUser2Mandanten
-
-
- CHANGED_WHENTextBox
-
-
- TabGruppendefinition
-
-
- True
-
-
- 190, 55
-
-
- DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- 1
-
-
- 1
-
-
- TabPage2
-
-
- Regular
-
-
- Horizontal
-
-
- TabPage5
-
-
- DD_DMSDataSet
-
-
- Die Gesamtanzahl der Elemente.
-
-
- Verfügbare Gruppen:
-
-
- 1
-
-
- 1097, 303
-
-
- GUIDTextBox
-
-
+
System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- TBDD_USERBindingSource
-
-
- 79, 13
-
-
- 477, 17
-
-
- True
-
-
- Vorherige verschieben
-
-
- 1
-
-
- False
-
-
- 1
-
-
- Inherit
-
-
- 182, 22
-
-
- 9
-
-
- 4
-
-
+
$this
-
- 67, 13
+
+ 14
-
- MiddleLeft
-
-
- TabPage5
-
-
- True
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 0
-
-
- 558, 80
-
-
- 0
-
-
-
- Default
-
-
- 17
-
-
- 5
-
-
- 2
-
-
- LANGUAGEComboBox
-
-
- cmbClientsforUser
-
-
- 3, 3, 3, 3
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
- wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
- v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
- UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
- Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
- lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
-
-
-
- 378, 55
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- ToolStripButton1
-
-
- True
-
-
- True
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
+
+ False
+
+
True
187, 39
-
- 631, 17
+
+ 64, 13
-
- 88
+
+ 5
-
- Gruppendefinition
+
+ Nachname:
-
- 8
+
+ NAMELabel
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 4, 22
+
+ $this
-
- 3
+
+ 16
-
- Selection
+
+ False
+
+
+ True
-
- 79, 181
+
+ 375, 39
+
+
+ 61, 13
+
+
+ 7
+
+
+ Username:
+
+
+ USERNAMELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 18
+
+
+ False
+
+
+ True
+
+
+ 76, 80
+
+
+ 37, 13
+
+
+ 9
+
+
+ Email:
+
+
+ EMAILLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 20
+
+
+ False
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 558, 39
+
+
+ 74, 13
+
+
+ 13
+
+
+ Logged where:
+
+
+ LOGGED_WHERELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 23
+
+
+ False
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 558, 80
+
+
+ 63, 13
+
+
+ 15
+
+
+ Login when:
+
+
+ LOG_IN_WHENLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 25
+
+
+ False
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
558, 123
-
-
+
+ 72, 13
-
+
+ 17
+
+
+ LogOut when:
+
+
+ LOG_OUT_WHENLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 27
+
+
+ False
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 187, 209
+
+
+ 62, 13
+
+
+ 21
+
+
+ Added who:
+
+
+ ADDED_WHOLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 30
+
+
+ False
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 375, 206
+
+
+ 67, 13
+
+
+ 23
+
+
+ Added when:
+
+
+ ADDED_WHENLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 32
+
+
+ False
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 187, 249
+
+
+ 74, 13
+
+
+ 25
+
+
+ Changed who:
+
+
+ CHANGED_WHOLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 34
+
+
+ False
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 375, 249
+
+
+ 79, 13
+
+
+ 27
+
+
+ Changed when:
+
+
+ CHANGED_WHENLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 36
+
+
+ False
+
+
+ True
+
+
+ 208, 41
+
+
+ 22, 13
+
+
+ 1
+
+
+ ID:
+
+
+ GUIDLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 3
+
+
+ False
+
+
+ True
+
+
+ 273, 41
+
+
+ 72, 13
+
+
+ 3
+
+
+ Gruppename:
+
+
+ NAMELabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 5
+
+
+ False
+
+
+ True
+
+
+ 208, 82
+
+
+ 65, 13
+
+
+ 5
+
+
+ Erstellt wer:
+
+
+ ADDED_WHOLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 7
+
+
+ False
+
+
+ True
+
+
+ 377, 82
+
+
+ 73, 13
+
+
+ 7
+
+
+ Erstellt wann:
+
+
+ ADDED_WHENLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 9
+
+
+ False
+
+
+ True
+
+
+ 208, 123
+
+
+ 77, 13
+
+
+ 9
+
+
+ Geändert wer:
+
+
+ CHANGED_WHOLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 11
+
+
+ False
+
+
+ True
+
+
+ 377, 123
+
+
+ 85, 13
+
+
+ 11
+
+
+ Geändert wann:
+
+
+ CHANGED_WHENLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 13
+
+
+ False
+
+
+ True
+
+
+ 76, 123
+
+
+ 51, 13
+
+
+ 31
+
+
+ Sprache:
+
+
+ LANGUAGELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 8
+
+
+ False
+
+
+ True
+
+
+ 560, 41
+
+
+ 65, 13
+
+
+ 14
+
+
+ Kommentar:
+
+
+ COMMENTLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 1
+
+
+ False
+
+
+ True
+
+
+ Tahoma, 8.25pt, style=Italic
+
+
+ 7, 37
+
+
+ 22, 13
+
+
+ 2
+
+
+ ID:
+
+
+ GUIDLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 3
+
+
+ False
+
+
+ True
+
+
+ 72, 37
+
+
+ 53, 13
+
+
+ 3
+
+
+ Mandant:
+
+
+ CLIENT_NAMELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 6
+
+
+ False
+
+
+ True
+
+
+ 331, 37
+
+
+ 92, 13
+
+
+ 5
+
+
+ Kurzbezeichnung:
+
+
+ SHORTNAMELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 10
+
+
+ False
+
+
+ True
+
+
+ 71, 77
+
+
+ 65, 13
+
+
+ 7
+
+
+ Kommentar:
+
+
+ COMMENTLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 14
+
+
+ False
+
+
+ True
+
+
+ Tahoma, 8.25pt, style=Italic
+
+
+ 669, 37
+
+
+ 71, 13
+
+
+ 11
+
+
+ Added when:
+
+
+ ADDED_WHENLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 15
+
+
+ False
+
+
+ True
+
+
+ Tahoma, 8.25pt, style=Italic
+
+
+ 514, 77
+
+
+ 77, 13
+
+
+ 13
+
+
+ Changed who:
+
+
+ CHANGED_WHOLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 11
+
+
+ False
+
+
+ True
+
+
+ Tahoma, 8.25pt, style=Italic
+
+
+ 669, 77
+
+
+ 83, 13
+
+
+ 15
+
+
+ Changed when:
+
+
+ CHANGED_WHENLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 7
+
+
+ False
+
+
+ True
+
+
+ Tahoma, 8.25pt, style=Italic
+
+
+
+ NoControl
+
+
+ 514, 37
+
+
+ 65, 13
+
+
+ 9
+
+
+ Added who:
+
+
+ Label12
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 17
+
+
+ False
+
+
+ True
+
+
+ 76, 165
+
+
+ 60, 13
+
+
+ 86
+
+
+ Kurzname:
+
+
+ SHORTNAMELabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 3
+
+
+ False
+
+
+ True
+
+
+ 187, 121
+
+
+ 68, 13
+
+
+ 87
+
+
+ Kommentar:
+
+
+ COMMENTLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
+
+ 17, 17
+
+
+ 160, 17
+
+
+ 355, 17
+
+
+ 544, 17
+
+
+ 717, 17
+
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
- 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
- Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
- 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+ wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
+ pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
+ Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
+ /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
+ zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
+ IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
+ rkJggg==
-
- 22
+
+ True
-
- DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+ 23, 22
-
- GridColumn11
+
+ Neu hinzufügen
+
+
+ 77, 22
+
+
+ von {0} Usern
+
+
+ Die Gesamtanzahl der Elemente.
@@ -969,42 +1116,1269 @@
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
-
- 1
+
+ True
-
- Added who:
+
+ 23, 22
-
- colSelect
+
+ Löschen
-
- LOG_IN_WHENLabel
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
+ wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
+ v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
+ UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
+ Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
+ lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ True
-
- XtraTabPage1
+
+ 23, 22
-
- 177, 22
+
+ Erste verschieben
-
-
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
+ 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
+ Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
+ 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/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
+ wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
+ h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
+ twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
+ kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
+ WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
+ 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
+ dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
+
+
+ 23, 22
+
+
+ Daten speichern
+
+
+ Magenta
+
+
+ 23, 22
+
+
+ ToolStripButton1
+
+
+ Magenta
+
+
+ 176, 22
+
+
+ Benutzer aus AD hinzufügen
+
+
+ 0, 0
+
+
+ 1115, 25
+
+
+ 0
BindingNavigator1
-
- Regular
+
+ TBDD_USERBindingNavigator
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 38
+
+
+ 15, 55
+
+
+ 54, 22
+
+
+ 2
+
+
+ USER_GUIDTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 13
+
+
+ 79, 55
+
+
+ 104, 22
+
+
+ 4
+
+
+ PRENAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 15
+
+
+ 190, 55
+
+
+ 182, 22
+
+
+ 6
+
+
+ NAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 17
+
+
+ 378, 55
+
+
+ 177, 22
+
+
+ 8
+
+
+ USERNAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 19
+
+
+ 79, 96
+
+
+ 293, 22
+
+
+ 10
+
+
+ EMAILTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 21
+
+
+ False
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 475, 96
+
+
+ 80, 24
+
+
+ 12
+
+
+ Logged in
+
+
+ LOGGED_INCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 22
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 561, 55
+
+
+ 182, 22
+
+
+ 14
+
+
+ LOGGED_WHERETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 24
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 561, 96
+
+
+ 182, 22
+
+
+ 16
+
+
+ LOG_IN_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 26
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 561, 140
+
+
+ 182, 22
+
+
+ 18
+
+
+ LOG_OUT_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 28
+
+
+ 378, 83
+
+
+ 104, 24
+
+
+ 20
+
+
+ Admin?
+
+
+ RECORG_ADMINCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 29
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 190, 224
+
+
+ 180, 22
+
+
+ 22
+
+
+ ADDED_WHOTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 31
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 378, 224
+
+
+ 177, 22
+
+
+ 24
+
+
+ ADDED_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 33
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 190, 262
+
+
+ 180, 22
+
+
+ 26
+
+
+ CHANGED_WHOTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 35
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 378, 262
+
+
+ 177, 22
+
+
+ 28
+
+
+ CHANGED_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 37
+
+
+ Top, Bottom, Left, Right
+
+
+ 0, 290
+
+
+ True
+
+
+ True
+
+
+ 6, 13
+
+
+ 109, 13
+
+
+ 2
+
+
+ Verfügbare Gruppen:
+
+
+ Label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage1
+
+
+ 0
+
+
+ MiddleLeft
+
+
+ 382, 37
+
+
+ 321, 23
+
+
+ 5
+
+
+ Benutzer aus Gruppe entfernen
+
+
+ btnRemoveUserFromGroup
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage1
+
+
+ 1
+
+
+ 929, 17
+
+
+ 140, 10
+
+
+ 236, 21
+
+
+ 0
+
+
+ cmbGroup
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage1
+
+
+ 2
+
+
+ True
+
+
+ 6, 40
+
+
+ 118, 13
+
+
+ 4
+
+
+ Zugewiesene Gruppen:
+
+
+ Label2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage1
+
+
+ 3
+
+
+ MiddleLeft
+
+
+ 382, 8
+
+
+ 321, 23
+
+
+ 1
+
+
+ Ausgewählten Benutzer zu Gruppe hinzufügen
+
+
+ btnAddUserToGroup
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage1
+
+
+ 4
+
+
+ Top, Bottom, Left
+
+
+ 140, 40
+
+
+ 236, 212
+
+
+ 3
+
+
+ lbGroups
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage1
+
+
+ 5
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 1089, 277
+
+
+ 0
+
+
+ User zu Gruppe
+
+
+ TabPage1
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControl1
+
+
+ 0
+
+
+ True
+
+
+ Top, Bottom, Left
+
+
+ 17, 134
+
+
+ 729, 95
+
+
+ 667, 19
+
+
+ Cyan
+
+
+ Fuchsia
+
+
+ Selection
+
+
+ True
+
+
+ 0
+
+
+ 54
+
+
+ True
+
+
+ 1
+
+
+ 95
+
+
+ True
+
+
+ 2
+
+
+ 84
+
+
+ 263, 221
+
+
+ 88
+
+
+ GridControlWH_Users1
+
+
+ DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ TabPage2
+
+
+ 0
+
+
+ Top, Bottom, Left
+
+
+ 864, 95
+
+
+ 229, 19
+
+
+ Cyan
+
+
+ Fuchsia
+
+
+ Selection
+
+
+ True
+
+
+ 0
+
+
+ 54
+
+
+ True
+
+
+ 1
+
+
+ 107
+
+
+ True
+
+
+ 2
+
+
+ 102
+
+
+ 284, 221
+
+
+ 87
+
+
+ GridControlUsers2Group
+
+
+ DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ TabPage2
+
+
+ 1
+
+
+ MiddleLeft
+
+
+ NoControl
+
+
+ 936, 19
+
+
+ 135, 53
+
+
+ 12
+
+
+ Benutzer aus Gruppe entfernen
+
+
+ MiddleRight
+
+
+ btndeleteUserfromGroup
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage2
+
+
+ 2
+
+
+ True
+
+
+ NoControl
+
+
+ 664, 3
+
+
+ 85, 13
+
+
+ 11
+
+
+ User zu Gruppe:
+
+
+ lblUserforGroup
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage2
+
+
+ 3
+
+
+ MiddleLeft
+
+
+ NoControl
+
+
+ 519, 19
+
+
+ 142, 46
+
+
+ 9
+
+
+ Ausgewählte User zu
+Gruppe hinzufügen
+
+
+ MiddleRight
+
+
+ btnaddSelectedUser2Group
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage2
+
+
+ 4
+
+
+ True
+
+
+ NoControl
+
+
+ 226, 3
+
+
+ 94, 13
+
+
+ 8
+
+
+ User zur Auswahl:
+
+
+ Label4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage2
5
-
- System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ True
+
+ NoControl
+
+
+ 7, 3
+
+
+ 109, 13
+
+
+ 4
+
+
+ Verfügbare Gruppen:
+
+
+ Label3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage2
+
+
+ 6
+
+
+ 10, 19
+
+
+ 213, 21
+
+
+ 3
+
+
+ cmbGroups_Group2User
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage2
+
+
+ 7
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 1089, 277
+
+
+ 1
+
+
+ Gruppe zu Usern
+
+
+ TabPage2
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControl1
+
+
+ 1
+
+
+ Fill
+
+
+ 0, 0
+
+
+ 1097, 303
+
+
+ 6
+
+
+ TabControl1
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 0
+
+
+ 1097, 303
+
+
+ User-/Gruppenzuordnung
+
+
+ XtraTabPage1
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl1
+
+
+ 0
+
+
+ 1103, 331
+
+
+ 30
+
+
+ Top, Bottom, Left
+
+
+ 4, 41
+
+
+ Cyan
+
+
+ Fuchsia
+
+
+ Group Name
+
+
+ True
+
+
+ 0
+
+
+ 170
+
+
+ 193, 227
+
+
+ 87
+
+
+ GridControl2
+
+
+ DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ TabGruppendefinition
+
+
+ 0
+
+
+ 563, 57
+
+
+ True
+
+
+ 302, 62
+
+
+ 15
+
+
+ COMMENTTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 2
+
+
+ 211, 57
+
+
+ 54, 21
+
+
+ 2
+
+
+ GUIDTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 4
+
+
+ 276, 57
+
+
+ 278, 21
+
+
+ 4
+
+
+ NAMETextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 6
+
+
+ 211, 98
+
+
+ 163, 21
+
+
+ 6
+
+
+ ADDED_WHOTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 8
+
+
+ 380, 98
+
+
+ 174, 21
+
+
+ 8
+
+
+ ADDED_WHENTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 10
+
+
+ 211, 140
+
+
+ 163, 21
+
+
+ 10
+
+
+ CHANGED_WHOTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 12
+
+
+ 380, 140
+
+
+ 174, 21
+
+
+ 12
+
+
+ CHANGED_WHENTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabGruppendefinition
+
+
+ 14
+
+
+ 793, 56
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -1017,341 +2391,244 @@
rkJggg==
-
- 0
-
-
+
True
-
- BindingNavigatorSeparator1
+
+ 23, 22
-
- System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Neu hinzufügen
-
- PRENAMELabel
+
+ 35, 22
-
- 10
+
+ of {0}
-
- System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Die Gesamtanzahl der Elemente.
-
- $this
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
+ DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
+ rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
+ i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
+ 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
+ QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
+ bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
-
- 7
-
-
- 107
-
-
+
True
-
- btndeleteUserfromClient
+
+ 23, 22
-
- 50, 23
+
+ Löschen
-
- 5
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
+ wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
+ v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
+ UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
+ Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
+ lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
-
- GridControl1
-
-
+
True
-
- TabControl1
+
+ 23, 22
-
- lbGroups
+
+ Erste verschieben
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
+ 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
+ Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
+ 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
-
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
False
-
+
+ 50, 23
+
+
0
-
- Default
+
+ Aktuelle Position
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 6, 25
-
- GridColumn4
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
+ n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
+ N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
+ oAc0QjgAAAAASUVORK5CYII=
+
-
- TBWH_Users2BindingSource
-
-
- 66, 13
-
-
- 15
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 65, 13
-
-
- colID
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 76, 123
-
-
- 0
-
-
+
True
-
- Regular
+
+ 23, 22
-
- Fuchsia
+
+ Nächste verschieben
-
- USERNAMELabel
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
+ h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
+ twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
+ kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
+ WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
+ 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 102
-
-
- 378, 224
-
-
- Regular
-
-
- 106
-
-
- Daten speichern
-
-
- 10
-
-
- NoControl
-
-
+
True
-
- 17
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 190, 224
-
-
- 34
-
-
- 20
-
-
- COMMENTLabel2
-
-
- GridViewUsersinClient
-
-
- Default
-
-
- $this
-
-
- True
-
-
- 1
-
-
- 561, 140
-
-
- 23
-
-
- 749, 39
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- 94
-
-
- 6
-
-
- Label16
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabControl1
-
-
- VWPMO_USERS_GROUPSBindingSource
-
-
- Mandantendefinition
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- 0
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- ToolStripButton17
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 180, 22
-
-
- 0
-
-
- 13
-
-
- System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 321, 23
-
-
- TabPage2
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- 83, 13
-
-
- $this
-
-
- GridView2
-
-
- System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Tile
-
-
- 12
-
23, 22
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Letzte verschieben
-
- 22, 13
+
+ 6, 25
-
- ToolStripButton1
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
+ dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
-
- XtraTabPage1
-
-
- Kurzname:
-
-
- 74, 13
-
-
+
23, 22
-
+
+ Daten speichern
+
+
+ Magenta
+
+
+ 23, 22
+
+
+ ToolStripButton1
+
+
0, 0
-
- Group Name
+
+ 1097, 25
-
- GUIDLabel2
+
+ 1
-
-
+
+ BindingNavigator1
-
- 321, 23
+
+ BindingNavigator1
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ TabGruppendefinition
-
+
15
-
- TabPage5
+
+ 1097, 303
-
+
+ Gruppendefinition
+
+
+ TabGruppendefinition
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl1
+
+
+ 1
+
+
True
-
- CLIENT_NAMETextBox
+
+ 575, 95
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
+ pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
+ Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
+ /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
+ zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
+ IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
+ rkJggg==
+
-
- GridColumn14
+
+ True
-
- 0
+
+ 23, 22
-
- 1
+
+ Neu hinzufügen
+
+
+ 74, 22
+
+
+ of {0} Clients
+
+
+ Die Gesamtanzahl der Elemente.
@@ -1365,505 +2642,14 @@
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
-
- 2
-
-
-
- Center
-
-
- TabPage6
-
-
- ToolStripButton20
-
-
- 12
-
-
- Regular
-
-
- Horizontal
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
- pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
- Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
- /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
- zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
- IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
- rkJggg==
-
-
-
- 15
-
-
- SHORTNAMETextBox1
-
-
- 5
-
-
- 36
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 0
-
-
- Ausgewählten Benutzer zu Gruppe hinzufügen
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 1081, 25
-
-
- ADDED_WHOTextBox1
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 23, 22
-
-
- TabPage5
-
-
- 3
-
-
- Position
-
-
- Letzte verschieben
-
-
- VWPMO_USERS_GROUPSTableAdapter
-
-
- TabPage5
-
-
+
True
-
- 6, 13
-
-
- Top, Left
-
-
-
- None
-
-
- LOGGED_WHERELabel
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 23, 22
-
-
- Mandantendefinition
-
-
- 0
-
-
- Letzte verschieben
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Cyan
-
-
- 0, 0
-
-
- 1067, 25
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- ToolStripLabel3
-
-
- System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Label12
-
-
- 6, 25
-
-
- Top, Bottom, Left
-
-
- 1
-
-
- TBDD_USER_GROUPSBindingSource
-
-
- Login when:
-
-
- 190, 140
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 25
-
-
- True
-
-
- 517, 93
-
-
- ToolStripButton19
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- Regular
-
-
- True
-
-
- 71, 13
-
-
- btnaddSelectedUser2Group
-
-
- True
-
-
- Top, Bottom, Left
-
-
- $this
-
-
- 100, 22
-
-
- True
-
-
- Tahoma, 8.25pt, style=Italic
-
-
- 9
-
-
- 9
-
-
- ToolStripSeparator9
-
-
- $this
-
-
- 208, 41
-
-
- LOG_IN_WHENTextBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 1089, 277
-
-
-
-
-
- Data saved!
-
-
- TBDD_GROUPS_USERBindingSource
-
-
- 213, 21
-
-
- lblUser2Client
-
-
- 14
-
-
- System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 85, 13
-
-
- TBDD_CLIENTBindingSource
-
-
- 74, 13
-
-
- 171, 21
-
-
- 2
-
-
- 475, 96
-
-
- 2
-
-
- ToolStripLabel1
-
-
- 16
-
-
- TabGruppendefinition
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
- n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
- N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
- oAc0QjgAAAAASUVORK5CYII=
-
-
-
- System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 10, 53
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 380, 98
-
-
- BindingNavigatorSeparator2
-
-
- 2
-
-
- $this
-
-
- DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- 5
-
-
- 0, 0
-
-
-
-
-
- 6, 25
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 0, 0
-
-
- ADDED_WHOLabel
-
-
- 1103, 331
-
-
- 38
-
-
- System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- BindingNavigatorMoveLastItem
-
-
- 380, 140
-
-
- 8
-
-
- True
-
-
- 13
-
-
- Top, Left, Right
-
-
- None
-
-
- NoControl
-
-
- Segoe UI, 8.25pt, style=Italic
-
23, 22
-
- Verfügbare Gruppen:
-
-
- 2
-
-
- 561, 96
-
-
- False
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- 21
-
-
- NoControl
-
-
- 331, 37
-
-
- 8
-
-
- System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBDD_CLIENTTableAdapter, DD_DMSDataSet1.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- TabGruppendefinition
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- Tahoma, 8.25pt, style=Italic
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 23, 22
-
-
- 19
-
-
- GUIDTextBox1
-
-
- 3
-
-
- User zu Gruppe:
-
-
- lblUserforGroup
-
-
- NoControl
-
-
- Kommentar:
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 8
-
-
- 123, 13
-
-
- of {0}
-
-
- 236, 21
-
-
- False
-
-
- CHANGED_WHENLabel
-
-
- 664, 3
-
-
- ToolStripTextBox1
-
-
- 26
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+ Löschen
@@ -1876,76 +2662,16 @@
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
-
- Cyan
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- btnsaddUser2Client
-
-
- Gruppename:
-
-
- 241, 108
-
-
- 140, 40
-
-
- 561, 55
-
-
- lstbxUserMandant
-
-
+
True
-
- 0
+
+ 23, 22
-
- 365, 63
+
+ Erste verschieben
-
- Benutzer aus Gruppe entfernen
-
-
- cmbGroups_Group2User
-
-
- 0
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
- pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
- Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
- /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
- zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
- IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
- rkJggg==
-
-
-
- $this
-
-
- 74, 22
-
-
- ToolStripSeparator2
-
-
- 24
-
-
- COMMENTTextBox2
-
-
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
@@ -1954,273 +2680,1056 @@
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
-
- TabPage6
+
+ True
-
- Selection
+
+ 23, 22
-
- ADDED_WHOTextBox
+
+ Vorherige verschieben
-
- TabPage5
+
+ 6, 25
Position
-
- Data saved!
+
+ False
-
- Benutzer aus Gruppe entfernen
+
+ 50, 23
-
- 25
+
+ 0
-
- CHANGED_WHENLabel2
+
+ Aktuelle Position
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 6, 25
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
+ n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
+ N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
+ oAc0QjgAAAAASUVORK5CYII=
+
-
- 826, 37
+
+ True
-
- 9
-
-
- colUSERNAME
-
-
- Label1
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- ToolStripSeparator3
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- ToolStripButton23
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TBDD_USERTableAdapter
-
-
- 26
-
-
- Label17
-
-
- Top, Left
-
-
- Gruppe zu Usern
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Geändert wann:
-
-
- TableAdapterManager
-
-
- TabPage6
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 51, 13
-
-
- 23
-
-
- Löschen
-
-
- TBDD_USERBindingNavigator
-
-
-
-
-
- TabGruppendefinition
-
-
- Top, Bottom, Left
-
-
+
23, 22
-
-
+
+ Nächste verschieben
-
- 14
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
+ h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
+ twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
+ kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
+ WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
+ 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
-
- 0
-
-
- CHANGED_WHOLabel
-
-
- 13
-
-
+
True
-
- Horizontal
+
+ 23, 22
-
- TabGruppendefinition
+
+ Letzte verschieben
-
- 54, 21
+
+ 6, 25
-
- True
-
-
- Changed when:
-
-
- ToolStripTextBox3
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- colNAME1
-
-
-
-
-
- 11
-
-
- 278, 21
-
-
- User zu Mandant hinzufügen
-
-
- Horizontal
-
-
- 0
-
-
- $this
-
-
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
-
- 31
+
+ 23, 22
-
- DD_Record_Organiser.DD_DMSDataSet, DD_DMSDataSet1.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ Daten speichern
-
- 15
+
+ Magenta
-
- TabGruppendefinition
+
+ 23, 22
-
- 77, 22
+
+ ToolStripButton1
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 3, 3
-
+
+ 1083, 25
+
+
+ 2
+
+
+ BindingNavigator2
+
+
+ BindingNavigator2
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 0
+
+
True
-
- Selection
+
+ NoControl
-
- TBDD_USER_GROUPSTableAdapter
+
+ 514, 117
+
+
+ 66, 13
+
+
+ 37
+
+
+ Data saved!
+
+
+ False
+
+
+ Label7
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 1
+
+
+ 171, 95
+
+
+ Tahoma, 8.25pt, style=Italic
+
+
+ 10, 53
+
+
+ 54, 21
+
+
+ 3
+
+
+ GUIDTextBox
System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+ TabPage5
-
- Geändert wer:
-
-
+
2
-
- False
+
+ 74, 53
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 254, 21
-
- TabPage1
+
+ 4
-
- True
+
+ CLIENT_NAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 4
+
+
+ Top, Left, Right
+
+
+ 826, 37
+
+
+ 257, 108
+
+
+ 36
+
+
+ ListBox2
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 5
+
+
+ 334, 53
+
+
+ 177, 21
+
+
+ 6
+
+
+ SHORTNAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 8
+
+
+ Tahoma, 8.25pt, style=Italic
+
+
+ 672, 93
+
+
+ 148, 21
+
+
+ 16
+
+
+ CHANGED_WHENTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 9
+
+
+ 74, 93
+
+
+ 437, 21
+
+
+ 8
+
+
+ COMMENTTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 12
+
+
+ Tahoma, 8.25pt, style=Italic
+
+
+ 517, 93
+
+
+ 146, 21
+
+
+ 14
+
+
+ CHANGED_WHOTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
TabPage5
+
+ 13
+
+
+ Tahoma, 8.25pt, style=Italic
+
+
+ 517, 53
+
+
+ 146, 21
+
+
+ 10
+
+
+ ADDED_WHOTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 16
+
+
+ Tahoma, 8.25pt, style=Italic
+
+
+ 672, 53
+
+
+ 148, 21
+
+
+ 12
+
+
+ ADDED_WHENTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 18
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 1089, 277
+
+
+ 0
+
+
+ Mandantendefinition
+
+
+ TabPage5
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControl3
+
+
+ 0
+
+
+ True
+
+
+ Top, Bottom, Left
+
+
+ 631, 17
+
+
+ Cyan
+
+
+ Fuchsia
+
+
+ Selection
+
+
+ True
+
+
+ 0
+
+
+ 54
+
+
+ True
+
+
+ 1
+
+
+ 107
+
+
+ True
+
+
+ 2
+
+
+ 102
+
+
+ 284, 253
+
+
+ 89
+
+
+ GridControlUsersinClient
+
+
+ DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ TabPage6
+
+
+ 0
+
+
+ Top, Bottom, Left
+
+
+ 223, 134
+
+
+ 187, 19
+
+
+ Cyan
+
+
+ Fuchsia
+
+
+ Selection
+
+
+ True
+
+
+ 0
+
+
+ 54
+
+
+ True
+
+
+ 1
+
+
+ 107
+
+
+ True
+
+
+ 2
+
+
+ 102
+
+
+ 284, 253
+
+
+ 88
+
+
+ GridControlUser2Mandanten
+
+
+ DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ TabPage6
+
+
+ 1
+
+
+ MiddleLeft
+
+
+ NoControl
+
+
+ 921, 17
+
+
+ 150, 46
+
+
+ 17
+
+
+ Benutzer aus Gruppe entfernen
+
+
+ MiddleRight
+
+
+ btndeleteUserfromClient
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 2
+
+
+ True
+
+
+ NoControl
+
+
+ 628, 1
+
+
+ 77, 13
+
+
+ 16
+
+
+ User zu Client:
+
+
+ lblUser2Client
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 3
+
+
+ MiddleLeft
+
+
+ NoControl
+
+
+ 477, 17
+
+
+ 148, 46
+
+
+ 14
+
+
+ Ausgewählte User zu
+Mandant hinzufügen
+
+
+ MiddleRight
+
+
+ btnsaddUser2Client
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 4
+
+
+ True
+
+
+ NoControl
+
+
+ 184, 4
+
+
+ 94, 13
+
+
+ 13
+
+
+ User zur Auswahl:
+
+
+ Label16
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 5
+
+
+ True
+
+
+ NoControl
+
7, 4
-
- 22, 13
+
+ 65, 13
-
- True
+
+ 11
-
- MiddleRight
+
+ Mandanten:
-
- 109, 13
+
+ Label17
-
- TabPage2
-
-
+
System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
+ TabPage6
+
+
+ 6
+
+
+ 7, 20
+
+
+ 171, 21
+
+
+ 10
+
+
+ cmbClientsforUser
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 7
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 1089, 277
+
+
+ 1
+
+
+ User zu Mandant hinzufügen
+
+
+ TabPage6
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControl3
+
+
+ 1
+
+
+ Fill
+
+
+ 0, 0
+
+
+ 1097, 303
+
+
+ 38
+
+
+ TabControl3
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 0
+
+
+ 1097, 303
+
+
+ Mandantendefinition
+
+
+ XtraTabPage2
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl1
+
+
+ 2
+
+
+ XtraTabControl1
+
+
+ DevExpress.XtraTab.XtraTabControl, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ $this
+
+
+ 11
+
+
+ 259, 56
+
+
+ 1176, 17
+
+
+ 529, 56
+
+
True
-
- 23, 22
+
+ 558, 184
-
- 37, 13
+
+ 66, 13
+
+
+ 31
+
+
+ Data saved!
+
+
+ False
+
+
+ lblsave
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 10
+
+
+ de-DE
+
+
+ en-US
+
+
+ 79, 140
+
+
+ 104, 21
+
+
+ 32
+
+
+ LANGUAGEComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 9
+
+
+ 947, 56
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 558, 208
+
+
+ 123, 13
+
+
+ 33
+
+
+ Zugeordnet zu Mandant:
+
+
+ Label5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 7
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 561, 224
+
+
+ 177, 56
+
+
+ 35
+
+
+ lstbxUserMandant
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 6
+
+
+ 376, 95
+
+
+ Top, Left, Right
+
+
+ 749, 39
+
+
+ Cyan
+
+
+ Fuchsia
+
+
+ Username
+
+
+ True
+
+
+ 0
+
+
+ 106
+
+
+ Name
+
+
+ True
+
+
+ 1
+
+
+ 94
+
+
+ EMail
+
+
+ True
+
+
+ 2
+
+
+ 84
+
+
+ 349, 241
+
+
+ 86
+
+
+ GridControl1
+
+
+ DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ $this
+
+
+ 5
+
+
+ 79, 181
+
+
+ 100, 22
+
+
+ 87
+
+
+ SHORTNAMETextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 4
+
+
+ 190, 140
+
+
+ True
+
+
+ 365, 63
+
+
+ 88
+
+
+ COMMENTTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 2
+
+
+ 378, 110
+
+
+ 91, 24
+
+
+ 89
+
+
+ WAN-Config
+
+
+ WAN_ENVIRONMENTCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
+
+ True
+
+
+ 140
+
+
+ 6, 13
+
+
+ True
+
+
+ 1115, 625
+
+
+ Segoe UI, 8.25pt
@@ -2647,2350 +4156,499 @@
U/+AAFj//4FT////Qv8=
-
- $this
-
-
- ToolStripButton5
-
-
- 7
-
-
- LOG_OUT_WHENTextBox
-
-
- Fuchsia
-
-
- 7
-
-
- 13
-
-
- COMMENTTextBox1
-
-
- 11
-
-
- 8
-
-
- ToolStripButton8
-
-
- Regular
-
-
- NoControl
-
-
- BindingNavigatorAddNewItem
-
-
- Horizontal
-
-
- 6
-
-
- 94, 13
-
-
- True
-
-
- CHANGED_WHOLabel2
-
-
- 2
-
-
- TabGruppendefinition
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 180, 22
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabPage6
-
-
- True
-
-
- $this
-
-
- 102
-
-
- None
-
-
- 87
-
-
- ToolStripSeparator1
-
-
-
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 5
-
-
- TabGruppendefinition
-
-
- 190, 262
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
- dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
-
-
-
- TabPage6
-
-
- 84
-
-
- LANGUAGELabel
-
-
- Top, Left
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GridControlWH_Users1
-
-
- Neu hinzufügen
-
-
- System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6
-
-
- True
-
-
- XtraTabControl1
-
-
- DD_Record_Organiser.DD_ECMAdmin, DD_ECMAdmin.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabControl3
-
-
- 3
-
-
- 12
-
-
- 4, 41
-
-
- Email:
-
-
- Inherit
-
-
- 54
-
-
- BindingNavigatorMoveNextItem
-
-
- TabPage2
-
-
- GridViewUser2Mandanten
-
-
- TabPage5
-
-
- colEMAIL
-
-
- 23, 22
-
-
- 1
-
-
- 3
-
-
- True
-
-
- 4
-
-
- 377, 123
-
-
- 54
-
-
- 208, 82
-
-
- 10
-
-
- True
-
-
- 669, 37
-
-
- 87
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- ListBox2
-
-
- Regular
-
-
- 94, 13
-
-
- Fill
-
-
- $this
-
-
- 177, 22
-
-
- DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- Changed who:
-
-
- TabGruppendefinition
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- 0, 0
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
- dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
-
-
-
- 0
-
-
- 174, 21
-
-
- 60, 13
-
-
- 80, 24
-
-
- 672, 93
-
-
- Ausgewählte User zu
-Mandant hinzufügen
-
-
- 187, 19
-
-
- Nächste verschieben
-
-
- 667, 19
-
-
- 10
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
- wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
- v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
- UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
- Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
- lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
-
-
-
- 23, 22
-
-
- Label2
-
-
- GridControl2
-
-
-
-
-
- CHANGED_WHOTextBox
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- ID:
-
-
- TabPage1
-
-
- 6, 25
-
-
- 628, 1
-
-
- 15
-
-
- 4
-
-
- Benutzer aus AD hinzufügen
-
-
- System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 3, 3, 3, 3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- User-/Gruppenzuordnung
-
-
- de-DE
-
-
- Top, Bottom, Left, Right
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 22
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 4
-
-
- TabPage5
-
-
- Top, Left, Right
-
-
- Logged where:
-
-
- Kommentar:
-
-
- System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 23, 22
-
-
- TabPage5
-
-
- 31
-
-
- 2
-
-
- 102
-
-
- 0
-
-
- True
-
-
- NoControl
-
-
- MiddleLeft
-
-
- 76, 80
-
-
- 23, 22
-
-
- GridColumn3
-
-
- Vorherige verschieben
-
-
- TabPage2
-
-
- TabPage2
-
-
- 3
-
-
- 30
-
-
- 0, 290
-
-
- NoControl
-
-
- 177, 56
-
-
- 3
-
-
- MiddleLeft
-
-
- BindingNavigatorMovePreviousItem
-
-
- 0
-
-
- DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabPage5
-
-
- $this
-
-
- Tile
-
-
-
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- TabPage5
-
-
- TabPage1
-
-
- XtraTabPage2
-
-
- Vorname:
-
-
- Changed when:
-
-
- Fuchsia
-
-
- Center
-
-
- 23, 22
-
-
- 14
-
-
- LOG_OUT_WHENLabel
-
-
- User zur Auswahl:
-
-
-
-
-
- ToolStripButton21
-
-
- 3
-
-
- 7, 3
-
-
-
-
-
- 11
-
-
- 27
-
-
- Die Gesamtanzahl der Elemente.
-
-
- 56, 13
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- ToolStripSeparator8
-
-
-
-
-
- $this
-
-
- Top, Left
-
-
- 18
-
-
-
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 3
-
-
- 10
-
-
- TabControl1
-
-
- True
-
-
- GridColumn1
-
-
- Horizontal
-
-
- $this
-
-
- TabPage1
-
-
- 7
-
Benutzer Konfiguration
-
-
+
+ DD_DMSDataSet
-
- True
+
+ DD_Record_Organiser.DD_DMSDataSet, DD_DMSDataSet1.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
-
- Selection
-
-
- 4, 22
-
-
- 193, 227
-
-
- 1
-
-
- Daten speichern
-
-
- 7, 37
-
-
- 15
-
-
- 71, 77
-
-
- Logged in
-
-
- Sprache:
-
-
- True
-
-
- 50, 23
-
-
- NoControl
-
-
- True
-
-
- 0
-
-
- 10
-
-
- 23, 22
-
-
- True
-
-
- 378, 262
-
-
- TabGruppendefinition
-
-
- 2
-
-
- TabPage6
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Cyan
-
-
- DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- True
-
-
- CHANGED_WHENLabel1
-
-
- 0, 0
-
-
-
-
-
- 672, 53
-
-
- Fuchsia
-
-
- System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- 65, 13
-
-
- True
-
-
- ToolStripButton3
-
-
- 148, 46
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- Tahoma, 8.25pt, style=Italic
-
-
- 349, 241
-
-
- TabControl3
-
-
- DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- Label3
-
-
- btndeleteUserfromGroup
-
-
- COMMENTTextBox
-
-
- TabPage5
-
-
- 558, 184
-
-
- True
-
-
- Regular
-
-
- 6
-
-
- 32
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 1081, 271
-
-
- ADDED_WHOLabel1
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 5
-
-
- 77, 13
-
-
- 14
-
-
- 150, 46
+
+ TBDD_USERBindingSource
System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 0
+
+ TBDD_USERTableAdapter
-
- 13
+
+ DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBDD_USERTableAdapter, DD_DMSDataSet1.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 23, 22
-
-
- 118, 13
-
-
- True
-
-
- $this
-
-
- True
-
-
- 375, 39
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 284, 221
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- 4
-
-
- 273, 41
-
-
- 302, 62
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- 72, 13
-
-
- 1
-
-
- 2
-
-
- GridControlUsers2Group
-
-
- BindingNavigatorPositionItem
-
-
- 6, 25
-
-
- 12
-
-
- $this
-
-
- 23, 22
-
-
- Default
-
-
- ToolStripButton2
-
-
- 10, 19
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- None
-
-
- 9
-
-
- 35
-
-
- TabPage5
-
-
- Tahoma, 8.25pt, style=Italic
-
-
- 0
-
-
- 33
-
-
- GridColumn2
-
-
- 62, 13
-
-
- 11
-
-
- 177, 21
-
-
- True
-
-
- Added who:
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
- h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
- twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
- kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
- WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
- 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
-
-
-
- True
-
-
- 1073, 245
-
-
-
-
-
- TabPage2
-
-
- 148, 21
-
-
- 35, 22
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
- h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
- twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
- kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
- WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
- 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
-
-
-
- DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- 7
-
-
- Die Gesamtanzahl der Elemente.
-
-
- Aktuelle Position
-
-
- 1
-
-
- 163, 21
-
-
- GridColumn7
-
-
- 23, 22
-
-
- Top, Bottom, Left
-
-
- True
-
-
- 6, 13
-
-
- 95
-
-
- TabControl3
-
-
- DD_ECMAdmin
-
-
- 16
-
-
- Ausgewählte User zu
-Gruppe hinzufügen
-
-
- TabGruppendefinition
-
-
- 50, 23
-
-
- GridColumn10
-
-
- 211, 57
-
-
- 87
-
-
- TBDD_USERBindingNavigatorSaveItem
-
-
- EMAILTextBox
-
-
- Tahoma, 8.25pt, style=Italic
-
-
- 517, 53
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- ToolStripButton4
-
-
- 146, 21
-
-
- 28
-
-
- 1115, 625
-
-
- 7, 20
-
-
- 7
-
-
- 24
-
-
-
-
-
- USERNAMETextBox
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- LogOut when:
-
-
- 334, 53
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
- h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
- twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
- kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
- WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
- 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
-
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 64, 13
-
-
- 18
-
-
- GridColumn9
-
-
- True
-
-
- 0
-
-
- $this
-
-
- 30
-
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 6, 40
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- Top, Left
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Tahoma, 8.25pt, style=Italic
-
-
- DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- 936, 19
+
+ TableAdapterManager
DD_Record_Organiser.DD_DMSDataSetTableAdapters.TableAdapterManager, DD_DMSDataSet1.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
-
- 76, 39
+
+ BindingNavigatorAddNewItem
-
- 6, 25
-
-
- 7
-
-
- GridColumn12
-
-
- $this
-
-
- 519, 19
-
-
- 9
-
-
- 174, 21
-
-
- BindingNavigator1
-
-
- 558, 39
-
-
- DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- 229, 19
-
-
- GridColumn6
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- 1
-
-
- True
-
-
- 11
-
-
- 37
-
-
- Löschen
-
-
-
-
-
- ID:
-
-
- 12
-
-
- System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 68, 13
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Horizontal
-
-
- True
-
-
- 5
-
-
- 1115, 25
-
-
- 0
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- TabGruppendefinition
-
-
- Tahoma, 8.25pt, style=Italic
-
-
- 9
-
-
- NAMELabel1
-
-
- TabPage6
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- 3
-
-
- Erste verschieben
-
-
- 226, 3
-
-
- 4
-
-
- USER_GUIDTextBox
-
-
- 4
-
-
- $this
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- ADDED_WHENTextBox
-
-
- TBWH_Users1BindingSource
-
-
- Default
-
-
- User zu Client:
-
-
- 177, 22
-
-
- 23, 22
-
-
- ADDED_WHENLabel1
-
-
- 0, 0
-
-
- Aktuelle Position
-
-
-
-
-
- lblsave
-
-
-
-
-
-
-
-
-
-
-
- NAMELabel
-
-
- Inherit
-
-
- True
-
-
- GUIDLabel1
-
-
- 2
-
-
- TabPage5
-
-
- NAMETextBox
-
-
- Center
-
-
- 14
-
-
- TabGruppendefinition
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- TabPage5
-
-
- GridColumn8
-
-
- GUIDLabel
-
-
- 377, 82
-
-
- Mandanten:
-
-
- ADDED_WHENLabel2
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SHORTNAMELabel
-
-
- TabPage2
-
-
- Fuchsia
-
-
- 514, 37
-
-
- 0
-
-
- 107
-
-
- XtraTabControl1
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 236, 212
-
-
- TabPage6
-
-
- 1081, 271
-
-
- BindingNavigatorSeparator
-
-
- False
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 36
-
-
- 375, 206
-
-
- GridControlUsersinClient
-
-
- SHORTNAMELabel1
-
-
- en-US
-
-
- Horizontal
-
-
-
-
-
- 1081, 271
-
-
- GridViewlUsers2Group
-
-
- TabGruppendefinition
-
-
- Admin?
-
-
- $this
-
-
- 61, 13
-
-
- True
-
-
- 176, 22
-
-
+
System.Windows.Forms.ToolStripButton, 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
-
-
- CHANGED_WHENTextBox1
-
-
- True
-
-
- True
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- 72, 13
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
- 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
- Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
- 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
-
-
-
- Segoe UI, 8.25pt, style=Italic
-
-
- 0, 0
-
-
- 4
-
-
- TabControl1
-
-
- ADDED_WHENTextBox2
-
-
- colNAME
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- $this
-
-
- $this
-
-
- DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBDD_USER_GROUPSTableAdapter, DD_DMSDataSet1.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- EMail
-
-
-
-
-
- TabPage5
-
-
- True
-
-
- Username:
-
-
- 72, 37
-
-
- GridColumn13
-
-
- Name
-
-
- TabPage2
-
-
- BindingNavigator1
-
-
- Erste verschieben
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- MiddleLeft
-
-
- Letzte verschieben
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- ADDED_WHENLabel
-
-
- 382, 37
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
-
- True
-
-
- NAMETextBox1
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
- n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
- N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
- oAc0QjgAAAAASUVORK5CYII=
-
-
-
- Label4
-
-
- Default
-
-
- 3, 3, 3, 3
-
-
-
-
-
- 375, 249
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 16
-
-
- Tahoma, 8.25pt, style=Italic
-
-
- 16
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabPage1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 74, 93
-
-
- GridView1
-
-
- $this
-
-
- Horizontal
-
-
- 163, 21
-
-
- Neu hinzufügen
-
-
- 23, 22
-
-
- MiddleRight
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 4, 22
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 12, 39
-
-
- TabPage5
-
-
- BindingNavigator2
-
-
- 184, 4
-
-
- Added when:
-
-
- cmbGroup
-
-
- System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 79, 96
-
-
- 23, 22
-
-
- of {0} Clients
-
-
- 0
-
-
- 35
-
-
- 6, 25
-
-
- ToolStripSeparator7
-
-
- 54, 21
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- True
-
-
- Fill
-
-
- 77, 13
-
-
- Mandant:
-
-
- ADDED_WHOTextBox2
-
-
- True
-
-
- Nächste verschieben
-
-
- Löschen
-
-
- DD_Record_Organiser.DD_DMSDataSetTableAdapters.VWPMO_USERS_GROUPSTableAdapter, DD_DMSDataSet1.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Tahoma, 8.25pt, style=Italic
-
-
- 514, 117
-
-
- None
-
-
- 25
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
- n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
- N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
- oAc0QjgAAAAASUVORK5CYII=
-
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- 1
-
-
- None
-
-
- $this
-
-
- 170
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 0
-
-
- 0
-
-
- Center
-
-
-
-
-
- 79, 55
-
-
- Cyan
-
-
- 0
-
-
- 1
-
-
- 558, 208
-
-
- True
-
-
- 284, 221
-
-
- $this
-
-
- 560, 41
-
-
- 0
-
-
- Neu hinzufügen
-
-
- 16
-
-
- 10
-
-
- CHANGED_WHOLabel1
-
-
- RECORG_ADMINCheckBox
-
-
- 109, 13
-
-
- TabPage5
-
-
- TabGruppendefinition
-
-
- 0
-
-
- 86
-
-
- 6
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- True
-
-
- 15, 55
-
-
- $this
-
-
- $this
-
-
- 6
-
-
- 182, 22
-
-
- 276, 57
-
-
- 84
-
-
- 0, 0
-
-
- Daten speichern
-
-
- 54
-
-
- Magenta
-
-
- User zur Auswahl:
-
-
- 1
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Magenta
-
-
- MiddleRight
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 32
-
-
- True
-
-
- DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- BindingNavigator2
-
-
- LOGGED_INCheckBox
-
-
- Tile
-
-
- 76, 165
-
-
- Center
-
-
- 23, 22
-
-
- 7
-
-
- 23, 22
-
-
- Center
-
-
- BindingNavigatorDeleteItem
-
-
- 87
-
-
- Magenta
-
-
- NoControl
-
-
- 4
-
-
- 142, 46
-
-
- True
-
-
- GridColumn5
-
-
-
-
-
- System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 211, 140
-
-
- Label7
-
-
- 1073, 245
-
BindingNavigatorCountItem
-
- XtraTabPage2
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ BindingNavigatorDeleteItem
-
- 13
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- True
+
+ BindingNavigatorMoveFirstItem
-
- NoControl
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 182, 22
+
+ BindingNavigatorMovePreviousItem
-
- btnAddUserToGroup
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 187, 209
-
-
- 4
-
-
- 6
-
-
- tsAddUser
+
+ BindingNavigatorSeparator
System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- ID:
+
+ BindingNavigatorPositionItem
-
- Kommentar:
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- Erstellt wer:
+
+ BindingNavigatorSeparator1
-
- Horizontal
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ BindingNavigatorMoveNextItem
-
- Top, Bottom, Left
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+ BindingNavigatorMoveLastItem
-
- True
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
+
+ BindingNavigatorSeparator2
-
- btnRemoveUserFromGroup
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 28
+
+ TBDD_USERBindingNavigatorSaveItem
-
- True
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ tbRefreshUsers
-
- Tile
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 514, 77
+
+ tsAddUser
-
- 23, 22
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- Segoe UI, 8.25pt, style=Italic
+
+ TBDD_USER_GROUPSBindingSource
-
- 2
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 3, 3, 3, 3
+
+ TBWH_Users1BindingSource
-
- von {0} Usern
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 6, 25
+
+ DD_ECMAdmin
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ DD_Record_Organiser.DD_ECMAdmin, DD_ECMAdmin.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
-
- Inherit
+
+ GridViewWH_Users1
-
- 0
+
+ DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
- $this
+
+ GridColumn3
-
- 563, 57
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
- MiddleLeft
+
+ GridColumn4
-
- 1097, 303
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
- 21
+
+ GridColumn5
-
- Inherit
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
- 6
+
+ GridColumn6
-
- 11
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ TBAD_UsersBindingSource
-
- 88
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GridViewlUsers2Group
+
+
+ DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ colSelect
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn1
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn2
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ colID
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridView2
+
+
+ DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ colNAME1
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ ToolStripButton1
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripLabel1
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton2
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton3
+
+
+ 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
+
+
+ ToolStripSeparator1
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripTextBox1
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator2
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton5
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton6
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator3
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton7
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton8
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton17
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripLabel3
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton18
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton19
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton20
+
+
+ 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
+
+
+ ToolStripTextBox3
+
+
+ System.Windows.Forms.ToolStripTextBox, 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
+
+
+ ToolStripButton21
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton22
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator9
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton23
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton24
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_CLIENTBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GridViewUsersinClient
+
+
+ DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn11
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn12
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn13
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn14
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ TBWH_Users2BindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GridViewUser2Mandanten
+
+
+ DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn7
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn8
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn9
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ GridColumn10
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ VWPMO_USERS_GROUPSBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_USER_GROUPSTableAdapter
+
+
+ DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBDD_USER_GROUPSTableAdapter, DD_DMSDataSet1.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ VWPMO_USERS_GROUPSTableAdapter
+
+
+ DD_Record_Organiser.DD_DMSDataSetTableAdapters.VWPMO_USERS_GROUPSTableAdapter, DD_DMSDataSet1.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_GROUPS_USERBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
TBDD_CLIENTTableAdapter
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBDD_CLIENTTableAdapter, DD_DMSDataSet1.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ GridView1
+
+
+ DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ colUSERNAME
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ colNAME
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ colEMAIL
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ frmUserKonfig
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- False
-
-
- False
-
-
- 171, 95
-
-
- False
-
-
- 17, 17
-
-
- 1176, 17
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- 729, 95
-
-
- en-US
-
-
- False
-
-
- True
-
-
- False
-
-
- 929, 17
-
-
- False
-
-
- False
-
-
- 947, 56
-
-
- 140
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- 355, 17
-
-
- 223, 134
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- 544, 17
-
-
- False
-
-
- False
-
-
- 17, 134
-
-
- 376, 95
-
-
- 717, 17
-
-
- False
-
-
- 575, 95
-
-
- 259, 56
-
-
- False
-
-
- 864, 95
-
-
- 529, 56
-
-
- 793, 56
-
-
- False
-
-
- 160, 17
-
\ No newline at end of file
diff --git a/app/DD-Record-Organiser/frmUserKonfig.vb b/app/DD-Record-Organiser/frmUserKonfig.vb
index add4640..91bac7a 100644
--- a/app/DD-Record-Organiser/frmUserKonfig.vb
+++ b/app/DD-Record-Organiser/frmUserKonfig.vb
@@ -419,29 +419,7 @@
Private Sub TabControl3_SelectedIndexChanged(sender As Object, e As EventArgs) Handles TabControl3.SelectedIndexChanged
Select Case TabControl3.SelectedIndex
Case 1
- Try
- DD_ECMAdmin.TBWH_Users2.Clear()
-
- Dim sql = String.Format("SELECT T.GUID, T.USERNAME,T.EMAIL FROM TBDD_USER T where T.GUID in (SELECT DISTINCT USER_ID FROM TBDD_CLIENT_USER WHERE CLIENT_ID IN ({0})) ORDER BY T.USERNAME", USER_CLIENTS_COMMA_SEPERATED)
- Dim DT As DataTable = ClassDatabase.Return_Datatable(sql)
- For Each userrow As DataRow In DT.Rows
- Dim newUserRow As DD_ECMAdmin.TBWH_Users2Row
- newUserRow = DD_ECMAdmin.TBWH_Users2.NewTBWH_Users2Row
-
- newUserRow.Username = userrow.Item(1)
- Try
- newUserRow.Email = userrow.Item(2)
- Catch ex As Exception
- newUserRow.Email = ""
- End Try
-
- newUserRow.ID = userrow.Item(0)
- DD_ECMAdmin.TBWH_Users2.Rows.Add(newUserRow)
- ' chklbxUserClient.Items.Add(New MyListBoxItem() With {.Text = userrow.Item(1), .ExtraData = userrow.Item(0)})
- Next
- Catch ex As Exception
- MsgBox("Error in LoadUserForClients:" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
- End Try
+ Load_Users_not_Related_2_Client()
Try
cmbClientsforUser.SelectedIndex = 1
Catch ex As Exception
@@ -449,6 +427,31 @@
cmbClientsforUser.SelectedIndex = 0
End Select
End Sub
+ Sub Load_Users_not_Related_2_Client()
+ Try
+ DD_ECMAdmin.TBWH_Users2.Clear()
+ Dim sql = String.Format("SELECT T.GUID, T.USERNAME,T.EMAIL FROM TBDD_USER T WHERE T.GUID NOT IN (SELECT USER_ID FROM TBDD_CLIENT_USER WHERE CLIENT_ID = {0}) ORDER BY T.USERNAME", cmbClientsforUser.SelectedValue)
+ Dim DT As DataTable = ClassDatabase.Return_Datatable(sql)
+ For Each userrow As DataRow In DT.Rows
+ Dim newUserRow As DD_ECMAdmin.TBWH_Users2Row
+ newUserRow = DD_ECMAdmin.TBWH_Users2.NewTBWH_Users2Row
+
+ newUserRow.Username = userrow.Item(1)
+ Try
+ newUserRow.Email = userrow.Item(2)
+ Catch ex As Exception
+ newUserRow.Email = ""
+ End Try
+
+ newUserRow.ID = userrow.Item(0)
+ DD_ECMAdmin.TBWH_Users2.Rows.Add(newUserRow)
+ ' chklbxUserClient.Items.Add(New MyListBoxItem() With {.Text = userrow.Item(1), .ExtraData = userrow.Item(0)})
+ Next
+ Label16.Text = "Users not linked to client (" & DT.Rows.Count & ")"
+ Catch ex As Exception
+ MsgBox("Error in Load Users not related 2 Client:" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
+ End Try
+ End Sub
Private Sub btnsaddUser2Client_Click(sender As Object, e As EventArgs) Handles btnsaddUser2Client.Click
For Each row As DataRow In DD_ECMAdmin.TBWH_Users2.Rows
@@ -475,32 +478,32 @@
Exit Sub
End Try
If clientid Is Nothing Then Exit Sub
- If Not cmbClientsforUser.SelectedValue Is Nothing Then
+
+ Load_Users_not_Related_2_Client()
- lblUser2Client.Text = "User for Client " & cmbClientsforUser.Text
- Dim SQL As String = String.Format("SELECT T1.GUID, T.USERNAME, T.EMAIL FROM TBDD_USER T, TBDD_CLIENT_USER T1 WHERE T1.USER_ID = T.GUID AND T1.CLIENT_ID = {0} ORDER BY T.USERNAME", cmbClientsforUser.SelectedValue)
- Try
- Dim dt As DataTable = ClassDatabase.Return_Datatable(SQL)
- DD_ECMAdmin.TBWH_Users1.Clear()
- For Each row As DataRow In dt.Rows
- Dim newUserRow As DD_ECMAdmin.TBWH_Users1Row
- newUserRow = DD_ECMAdmin.TBWH_Users1.NewTBWH_Users1Row
- newUserRow.Username = row.Item(1)
- Try
- newUserRow.Email = row.Item(2)
- Catch ex As Exception
- newUserRow.Email = ""
- End Try
+ Dim SQL As String = String.Format("SELECT T1.GUID, T.USERNAME, T.EMAIL FROM TBDD_USER T, TBDD_CLIENT_USER T1 WHERE T1.USER_ID = T.GUID AND T1.CLIENT_ID = {0} ORDER BY T.USERNAME", cmbClientsforUser.SelectedValue)
+ Try
+ Dim dt As DataTable = ClassDatabase.Return_Datatable(SQL)
+ DD_ECMAdmin.TBWH_Users1.Clear()
+ For Each row As DataRow In dt.Rows
+ Dim newUserRow As DD_ECMAdmin.TBWH_Users1Row
+ newUserRow = DD_ECMAdmin.TBWH_Users1.NewTBWH_Users1Row
+ newUserRow.Username = row.Item(1)
+ Try
+ newUserRow.Email = row.Item(2)
+ Catch ex As Exception
+ newUserRow.Email = ""
+ End Try
- newUserRow.ID = row.Item(0)
- DD_ECMAdmin.TBWH_Users1.Rows.Add(newUserRow)
- ' chklbxUsersforClient.Items.Add(New MyListBoxItem() With {.Text = row.Item(1), .ExtraData = row.Item(0)})
- Next
- Catch ex As Exception
- MsgBox("Error in LoadUserForClient:" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
- End Try
- End If
+ newUserRow.ID = row.Item(0)
+ DD_ECMAdmin.TBWH_Users1.Rows.Add(newUserRow)
+ ' chklbxUsersforClient.Items.Add(New MyListBoxItem() With {.Text = row.Item(1), .ExtraData = row.Item(0)})
+ Next
+ lblUser2Client.Text = "Users linked to Client '" & cmbClientsforUser.Text & "' (" & dt.Rows.Count & ")"
+ Catch ex As Exception
+ MsgBox("Error in LoadUserForClient:" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
+ End Try
End Sub
@@ -562,6 +565,6 @@
End If
End If
-
+
End Sub
End Class
\ No newline at end of file